Merge branch '4.x' into new-tutorial-part-ii

This commit is contained in:
Juan Luis Cano Rodríguez 2021-07-05 20:12:53 +02:00
commit b9da1577b6
148 changed files with 3778 additions and 3376 deletions

47
CHANGES
View File

@ -37,6 +37,8 @@ Features added
* #3014: autodoc: Add :event:`autodoc-process-bases` to modify the base classes * #3014: autodoc: Add :event:`autodoc-process-bases` to modify the base classes
of the class definitions of the class definitions
* #9272: autodoc: Render enum values for the default argument value better * #9272: autodoc: Render enum values for the default argument value better
* #9384: autodoc: ``autodoc_typehints='none'`` now erases typehints for
variables, attributes and properties
* #3257: autosummary: Support instance attributes for classes * #3257: autosummary: Support instance attributes for classes
* #9129: html search: Show search summaries when html_copy_source = False * #9129: html search: Show search summaries when html_copy_source = False
* #9307: html search: Prevent corrections and completions in search field * #9307: html search: Prevent corrections and completions in search field
@ -53,6 +55,21 @@ Features added
* #9097: Optimize the paralell build * #9097: Optimize the paralell build
* #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using * #9131: Add :confval:`nitpick_ignore_regex` to ignore nitpicky warnings using
regular expressions regular expressions
* #9174: Add ``Sphinx.set_html_assets_policy`` to tell extensions to include
HTML assets in all the pages. Extensions can check this via
``Sphinx.registry.html_assets_policy``
* C++, add support for
- ``inline`` variables,
- ``consteval`` functions,
- ``constinit`` variables,
- ``char8_t``,
- ``explicit(<constant expression>)`` specifier,
- digit separators in literals, and
- constraints in placeholder type specifiers, aka. adjective syntax
(e.g., ``Sortable auto &v``).
* C, add support for digit separators in literals.
Bugs fixed Bugs fixed
@ -65,10 +82,14 @@ Bugs fixed
* #9250: autodoc: The inherited method not having docstring is wrongly parsed * #9250: autodoc: The inherited method not having docstring is wrongly parsed
* #9283: autodoc: autoattribute directive failed to generate document for an * #9283: autodoc: autoattribute directive failed to generate document for an
attribute not having any comment attribute not having any comment
* #9364: autodoc: single element tuple on the default argument value is wrongly
rendered
* #9317: html: Pushing left key causes visiting the next page at the first page * #9317: html: Pushing left key causes visiting the next page at the first page
* #9381: html: URL for html_favicon and html_log does not work
* #9270: html theme : pyramid theme generates incorrect logo links * #9270: html theme : pyramid theme generates incorrect logo links
* #9217: manpage: The name of manpage directory that is generated by * #9217: manpage: The name of manpage directory that is generated by
:confval:`man_make_section_directory` is not correct :confval:`man_make_section_directory` is not correct
* #9350: manpage: Fix font isn't reset after keyword at the top of samp role
* #9306: Linkcheck reports broken link when remote server closes the connection * #9306: Linkcheck reports broken link when remote server closes the connection
on HEAD request on HEAD request
* #9280: py domain: "exceptions" module is not displayed * #9280: py domain: "exceptions" module is not displayed
@ -80,7 +101,7 @@ Bugs fixed
Testing Testing
-------- --------
Release 4.0.3 (in development) Release 4.0.4 (in development)
============================== ==============================
Dependencies Dependencies
@ -98,14 +119,32 @@ Features added
Bugs fixed Bugs fixed
---------- ----------
Testing
--------
Release 4.0.3 (released Jul 05, 2021)
=====================================
Features added
--------------
* C, add C23 keywords ``_Decimal32``, ``_Decimal64``, and ``_Decimal128``.
* #9354: C, add :confval:`c_extra_keywords` to allow user-defined keywords
during parsing.
* Revert the removal of ``sphinx.util:force_decode()`` to become some 3rd party
extensions available again during 5.0
Bugs fixed
----------
* #9330: changeset domain: :rst:dir:`versionchanged` with contents being a list * #9330: changeset domain: :rst:dir:`versionchanged` with contents being a list
will cause error during pdf build will cause error during pdf build
* #9313: LaTeX: complex table with merged cells broken since 4.0 * #9313: LaTeX: complex table with merged cells broken since 4.0
* #9305: LaTeX: backslash may cause Improper discretionary list pdf build error * #9305: LaTeX: backslash may cause Improper discretionary list pdf build error
with Japanese engines with Japanese engines
* #9354: C, remove special macro names from the keyword list.
Testing See also :confval:`c_extra_keywords`.
-------- * #9322: KeyError is raised on PropagateDescDomain transform
Release 4.0.2 (released May 20, 2021) Release 4.0.2 (released May 20, 2021)
===================================== =====================================

View File

@ -33,7 +33,7 @@
<li>{%trans path=pathto('ext/builtins')%}<b>Extensions:</b> automatic testing of code snippets, inclusion of <li>{%trans path=pathto('ext/builtins')%}<b>Extensions:</b> automatic testing of code snippets, inclusion of
docstrings from Python modules (API docs), and docstrings from Python modules (API docs), and
<a href="{{ path }}#builtin-sphinx-extensions">more</a>{%endtrans%}</li> <a href="{{ path }}#builtin-sphinx-extensions">more</a>{%endtrans%}</li>
<li>{%trans path=pathto("usage/extensions")%}<b>Contributed extensions:</b> dozens of <li>{%trans path=pathto("usage/extensions/index")%}<b>Contributed extensions:</b> dozens of
extensions <a href="{{ path }}#third-party-extensions">contributed by users</a>; extensions <a href="{{ path }}#third-party-extensions">contributed by users</a>;
most of them installable from PyPI{%endtrans%}</li> most of them installable from PyPI{%endtrans%}</li>
</ul> </ul>

View File

@ -256,6 +256,9 @@ Here is some sample code to accomplish this:
.. code-block:: python .. code-block:: python
from os import path
from sphinx.util.fileutil import copy_asset_file
def copy_custom_files(app, exc): def copy_custom_files(app, exc):
if app.builder.format == 'html' and not exc: if app.builder.format == 'html' and not exc:
staticdir = path.join(app.builder.outdir, '_static') staticdir = path.join(app.builder.outdir, '_static')

View File

@ -750,8 +750,9 @@ The following is a list of deprecated interfaces.
* - ``sphinx.environment.NoUri`` * - ``sphinx.environment.NoUri``
- 2.1 - 2.1
- 4.0 - 3.0
- ``sphinx.errors.NoUri`` - ``sphinx.errors.NoUri``
* - ``sphinx.ext.apidoc.format_directive()`` * - ``sphinx.ext.apidoc.format_directive()``
- 2.1 - 2.1
- 4.0 - 4.0
@ -1035,7 +1036,7 @@ The following is a list of deprecated interfaces.
* - ``sphinx.util.force_decode()`` * - ``sphinx.util.force_decode()``
- 2.0 - 2.0
- 4.0 - 5.0
- N/A - N/A
* - ``sphinx.util.get_matching_docs()`` * - ``sphinx.util.get_matching_docs()``

View File

@ -2689,6 +2689,14 @@ Options for the C domain
.. versionadded:: 3.0 .. versionadded:: 3.0
.. confval:: c_extra_keywords
A list of identifiers to be recognized as keywords by the C parser.
It defaults to ``['alignas', 'alignof', 'bool', 'complex', 'imaginary',
'noreturn', 'static_assert', 'thread_local']``.
.. versionadded:: 4.0.3
.. confval:: c_allow_pre_v3 .. confval:: c_allow_pre_v3
A boolean (default ``False``) controlling whether to parse and try to A boolean (default ``False``) controlling whether to parse and try to

View File

@ -325,9 +325,9 @@ sure that "sphinx.ext.napoleon" is enabled in `conf.py`::
**If True**:: **If True**::
def __init__(self): def __init__(self):
\"\"\" """
This will be included in the docs because it has a docstring This will be included in the docs because it has a docstring
\"\"\" """
def __init__(self): def __init__(self):
# This will NOT be included in the docs # This will NOT be included in the docs
@ -509,7 +509,7 @@ sure that "sphinx.ext.napoleon" is enabled in `conf.py`::
.. confval:: napoleon_preprocess_types .. confval:: napoleon_preprocess_types
True to convert the type definitions in the docstrings as references. True to convert the type definitions in the docstrings as references.
Defaults to *True*. Defaults to *False*.
.. versionadded:: 3.2.1 .. versionadded:: 3.2.1
.. versionchanged:: 3.5 .. versionchanged:: 3.5

View File

@ -1250,6 +1250,18 @@ class Sphinx:
return True return True
def set_html_assets_policy(self, policy):
"""Set the policy to include assets in HTML pages.
- always: include the assets in all the pages
- per_page: include the assets only in pages where they are used
.. versionadded: 4.1
"""
if policy not in ('always', 'per_page'):
raise ValueError('policy %s is not supported' % policy)
self.registry.html_assets_policy = policy
@property @property
def html_themes(self) -> Dict[str, str]: def html_themes(self) -> Dict[str, str]:
warnings.warn('app.html_themes is deprecated.', warnings.warn('app.html_themes is deprecated.',

View File

@ -468,9 +468,6 @@ class StandaloneHTMLBuilder(Builder):
else: else:
self.last_updated = None self.last_updated = None
logo = path.basename(self.config.html_logo) if self.config.html_logo else ''
favicon = path.basename(self.config.html_favicon) if self.config.html_favicon else ''
self.relations = self.env.collect_relations() self.relations = self.env.collect_relations()
rellinks: List[Tuple[str, str, str, str]] = [] rellinks: List[Tuple[str, str, str, str]] = []
@ -513,8 +510,8 @@ class StandaloneHTMLBuilder(Builder):
'rellinks': rellinks, 'rellinks': rellinks,
'builder': self.name, 'builder': self.name,
'parents': [], 'parents': [],
'logo': logo, 'logo': self.config.html_logo or '',
'favicon': favicon, 'favicon': self.config.html_favicon or '',
'html5_doctype': html5_ready and not self.config.html4_writer, 'html5_doctype': html5_ready and not self.config.html4_writer,
} }
if self.theme: if self.theme:

View File

@ -55,10 +55,15 @@ _keywords = [
'else', 'enum', 'extern', 'float', 'for', 'goto', 'if', 'inline', 'int', 'long', 'else', 'enum', 'extern', 'float', 'for', 'goto', 'if', 'inline', 'int', 'long',
'register', 'restrict', 'return', 'short', 'signed', 'sizeof', 'static', 'struct', 'register', 'restrict', 'return', 'short', 'signed', 'sizeof', 'static', 'struct',
'switch', 'typedef', 'union', 'unsigned', 'void', 'volatile', 'while', 'switch', 'typedef', 'union', 'unsigned', 'void', 'volatile', 'while',
'_Alignas', 'alignas', '_Alignof', 'alignof', '_Atomic', '_Bool', 'bool', '_Alignas', '_Alignof', '_Atomic', '_Bool', '_Complex',
'_Complex', 'complex', '_Generic', '_Imaginary', 'imaginary', '_Decimal32', '_Decimal64', '_Decimal128',
'_Noreturn', 'noreturn', '_Static_assert', 'static_assert', '_Generic', '_Imaginary', '_Noreturn', '_Static_assert', '_Thread_local',
'_Thread_local', 'thread_local', ]
# These are only keyword'y when the corresponding headers are included.
# They are used as default value for c_extra_keywords.
_macroKeywords = [
'alignas', 'alignof', 'bool', 'complex', 'imaginary', 'noreturn', 'static_assert',
'thread_local',
] ]
# these are ordered by preceedence # these are ordered by preceedence
@ -2536,6 +2541,12 @@ class DefinitionParser(BaseParser):
if identifier in _keywords: if identifier in _keywords:
self.fail("Expected identifier in nested name, " self.fail("Expected identifier in nested name, "
"got keyword: %s" % identifier) "got keyword: %s" % identifier)
if self.matched_text in self.config.c_extra_keywords:
msg = "Expected identifier, got user-defined keyword: %s." \
+ " Remove it from c_extra_keywords to allow it as identifier.\n" \
+ "Currently c_extra_keywords is %s."
self.fail(msg % (self.matched_text,
str(self.config.c_extra_keywords)))
ident = ASTIdentifier(identifier) ident = ASTIdentifier(identifier)
names.append(ident) names.append(ident)
@ -2712,6 +2723,12 @@ class DefinitionParser(BaseParser):
if self.matched_text in _keywords: if self.matched_text in _keywords:
self.fail("Expected identifier, " self.fail("Expected identifier, "
"got keyword: %s" % self.matched_text) "got keyword: %s" % self.matched_text)
if self.matched_text in self.config.c_extra_keywords:
msg = "Expected identifier, got user-defined keyword: %s." \
+ " Remove it from c_extra_keywords to allow it as identifier.\n" \
+ "Currently c_extra_keywords is %s."
self.fail(msg % (self.matched_text,
str(self.config.c_extra_keywords)))
identifier = ASTIdentifier(self.matched_text) identifier = ASTIdentifier(self.matched_text)
declId = ASTNestedName([identifier], rooted=False) declId = ASTNestedName([identifier], rooted=False)
else: else:
@ -3878,6 +3895,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
app.add_domain(CDomain) app.add_domain(CDomain)
app.add_config_value("c_id_attributes", [], 'env') app.add_config_value("c_id_attributes", [], 'env')
app.add_config_value("c_paren_attributes", [], 'env') app.add_config_value("c_paren_attributes", [], 'env')
app.add_config_value("c_extra_keywords", _macroKeywords, 'env')
app.add_post_transform(AliasTransform) app.add_post_transform(AliasTransform)
app.add_config_value("c_allow_pre_v3", False, 'env') app.add_config_value("c_allow_pre_v3", False, 'env')

View File

@ -319,8 +319,9 @@ _fold_operator_re = re.compile(r'''(?x)
# see https://en.cppreference.com/w/cpp/keyword # see https://en.cppreference.com/w/cpp/keyword
_keywords = [ _keywords = [
'alignas', 'alignof', 'and', 'and_eq', 'asm', 'auto', 'bitand', 'bitor', 'alignas', 'alignof', 'and', 'and_eq', 'asm', 'auto', 'bitand', 'bitor',
'bool', 'break', 'case', 'catch', 'char', 'char16_t', 'char32_t', 'class', 'bool', 'break', 'case', 'catch', 'char', 'char8_t', 'char16_t', 'char32_t',
'compl', 'concept', 'const', 'constexpr', 'const_cast', 'continue', 'class', 'compl', 'concept', 'const', 'consteval', 'constexpr', 'constinit',
'const_cast', 'continue',
'decltype', 'default', 'delete', 'do', 'double', 'dynamic_cast', 'else', 'decltype', 'default', 'delete', 'do', 'double', 'dynamic_cast', 'else',
'enum', 'explicit', 'export', 'extern', 'false', 'float', 'for', 'friend', 'enum', 'explicit', 'export', 'extern', 'false', 'float', 'for', 'friend',
'goto', 'if', 'inline', 'int', 'long', 'mutable', 'namespace', 'new', 'goto', 'if', 'inline', 'int', 'long', 'mutable', 'namespace', 'new',
@ -426,6 +427,7 @@ _id_fundamental_v2 = {
'wchar_t': 'w', 'wchar_t': 'w',
'char32_t': 'Di', 'char32_t': 'Di',
'char16_t': 'Ds', 'char16_t': 'Ds',
'char8_t': 'Du',
'short': 's', 'short': 's',
'short int': 's', 'short int': 's',
'signed short': 's', 'signed short': 's',
@ -867,7 +869,7 @@ class ASTNumberLiteral(ASTLiteral):
def get_id(self, version: int) -> str: def get_id(self, version: int) -> str:
# TODO: floats should be mangled by writing the hex of the binary representation # TODO: floats should be mangled by writing the hex of the binary representation
return "L%sE" % self.data return "L%sE" % self.data.replace("'", "")
def describe_signature(self, signode: TextElement, mode: str, def describe_signature(self, signode: TextElement, mode: str,
env: "BuildEnvironment", symbol: "Symbol") -> None: env: "BuildEnvironment", symbol: "Symbol") -> None:
@ -1880,9 +1882,11 @@ class ASTTrailingTypeSpecDecltype(ASTTrailingTypeSpec):
class ASTTrailingTypeSpecName(ASTTrailingTypeSpec): class ASTTrailingTypeSpecName(ASTTrailingTypeSpec):
def __init__(self, prefix: str, nestedName: ASTNestedName) -> None: def __init__(self, prefix: str, nestedName: ASTNestedName,
placeholderType: Optional[str]) -> None:
self.prefix = prefix self.prefix = prefix
self.nestedName = nestedName self.nestedName = nestedName
self.placeholderType = placeholderType
@property @property
def name(self) -> ASTNestedName: def name(self) -> ASTNestedName:
@ -1897,6 +1901,9 @@ class ASTTrailingTypeSpecName(ASTTrailingTypeSpec):
res.append(self.prefix) res.append(self.prefix)
res.append(' ') res.append(' ')
res.append(transform(self.nestedName)) res.append(transform(self.nestedName))
if self.placeholderType is not None:
res.append(' ')
res.append(self.placeholderType)
return ''.join(res) return ''.join(res)
def describe_signature(self, signode: TextElement, mode: str, def describe_signature(self, signode: TextElement, mode: str,
@ -1905,6 +1912,17 @@ class ASTTrailingTypeSpecName(ASTTrailingTypeSpec):
signode += addnodes.desc_sig_keyword(self.prefix, self.prefix) signode += addnodes.desc_sig_keyword(self.prefix, self.prefix)
signode += addnodes.desc_sig_space() signode += addnodes.desc_sig_space()
self.nestedName.describe_signature(signode, mode, env, symbol=symbol) self.nestedName.describe_signature(signode, mode, env, symbol=symbol)
if self.placeholderType is not None:
signode += addnodes.desc_sig_space()
if self.placeholderType == 'auto':
signode += addnodes.desc_sig_keyword('auto', 'auto')
elif self.placeholderType == 'decltype(auto)':
signode += addnodes.desc_sig_keyword('decltype', 'decltype')
signode += addnodes.desc_sig_punctuation('(', '(')
signode += addnodes.desc_sig_keyword('auto', 'auto')
signode += addnodes.desc_sig_punctuation(')', ')')
else:
assert False, self.placeholderType
class ASTFunctionParameter(ASTBase): class ASTFunctionParameter(ASTBase):
@ -2099,16 +2117,41 @@ class ASTParametersQualifiers(ASTBase):
signode += addnodes.desc_sig_keyword(self.initializer, self.initializer) signode += addnodes.desc_sig_keyword(self.initializer, self.initializer)
class ASTExplicitSpec(ASTBase):
def __init__(self, expr: Optional[ASTExpression]) -> None:
self.expr = expr
def _stringify(self, transform: StringifyTransform) -> str:
res = ['explicit']
if self.expr is not None:
res.append('(')
res.append(transform(self.expr))
res.append(')')
return ''.join(res)
def describe_signature(self, signode: TextElement,
env: "BuildEnvironment", symbol: "Symbol") -> None:
signode += addnodes.desc_sig_keyword('explicit', 'explicit')
if self.expr is not None:
signode += addnodes.desc_sig_punctuation('(', '(')
self.expr.describe_signature(signode, 'markType', env, symbol)
signode += addnodes.desc_sig_punctuation(')', ')')
class ASTDeclSpecsSimple(ASTBase): class ASTDeclSpecsSimple(ASTBase):
def __init__(self, storage: str, threadLocal: bool, inline: bool, virtual: bool, def __init__(self, storage: str, threadLocal: bool, inline: bool, virtual: bool,
explicit: bool, constexpr: bool, volatile: bool, const: bool, explicitSpec: Optional[ASTExplicitSpec],
friend: bool, attrs: List[ASTAttribute]) -> None: consteval: bool, constexpr: bool, constinit: bool,
volatile: bool, const: bool, friend: bool,
attrs: List[ASTAttribute]) -> None:
self.storage = storage self.storage = storage
self.threadLocal = threadLocal self.threadLocal = threadLocal
self.inline = inline self.inline = inline
self.virtual = virtual self.virtual = virtual
self.explicit = explicit self.explicitSpec = explicitSpec
self.consteval = consteval
self.constexpr = constexpr self.constexpr = constexpr
self.constinit = constinit
self.volatile = volatile self.volatile = volatile
self.const = const self.const = const
self.friend = friend self.friend = friend
@ -2121,8 +2164,10 @@ class ASTDeclSpecsSimple(ASTBase):
self.threadLocal or other.threadLocal, self.threadLocal or other.threadLocal,
self.inline or other.inline, self.inline or other.inline,
self.virtual or other.virtual, self.virtual or other.virtual,
self.explicit or other.explicit, self.explicitSpec or other.explicitSpec,
self.consteval or other.consteval,
self.constexpr or other.constexpr, self.constexpr or other.constexpr,
self.constinit or other.constinit,
self.volatile or other.volatile, self.volatile or other.volatile,
self.const or other.const, self.const or other.const,
self.friend or other.friend, self.friend or other.friend,
@ -2141,17 +2186,22 @@ class ASTDeclSpecsSimple(ASTBase):
res.append('friend') res.append('friend')
if self.virtual: if self.virtual:
res.append('virtual') res.append('virtual')
if self.explicit: if self.explicitSpec:
res.append('explicit') res.append(transform(self.explicitSpec))
if self.consteval:
res.append('consteval')
if self.constexpr: if self.constexpr:
res.append('constexpr') res.append('constexpr')
if self.constinit:
res.append('constinit')
if self.volatile: if self.volatile:
res.append('volatile') res.append('volatile')
if self.const: if self.const:
res.append('const') res.append('const')
return ' '.join(res) return ' '.join(res)
def describe_signature(self, signode: TextElement) -> None: def describe_signature(self, signode: TextElement,
env: "BuildEnvironment", symbol: "Symbol") -> None:
addSpace = False addSpace = False
for attr in self.attrs: for attr in self.attrs:
if addSpace: if addSpace:
@ -2175,10 +2225,17 @@ class ASTDeclSpecsSimple(ASTBase):
addSpace = _add(signode, 'friend') addSpace = _add(signode, 'friend')
if self.virtual: if self.virtual:
addSpace = _add(signode, 'virtual') addSpace = _add(signode, 'virtual')
if self.explicit: if self.explicitSpec:
addSpace = _add(signode, 'explicit') if addSpace:
signode += addnodes.desc_sig_space()
self.explicitSpec.describe_signature(signode, env, symbol)
addSpace = True
if self.consteval:
addSpace = _add(signode, 'consteval')
if self.constexpr: if self.constexpr:
addSpace = _add(signode, 'constexpr') addSpace = _add(signode, 'constexpr')
if self.constinit:
addSpace = _add(signode, 'constinit')
if self.volatile: if self.volatile:
addSpace = _add(signode, 'volatile') addSpace = _add(signode, 'volatile')
if self.const: if self.const:
@ -2235,7 +2292,7 @@ class ASTDeclSpecs(ASTBase):
env: "BuildEnvironment", symbol: "Symbol") -> None: env: "BuildEnvironment", symbol: "Symbol") -> None:
verify_description_mode(mode) verify_description_mode(mode)
numChildren = len(signode) numChildren = len(signode)
self.leftSpecs.describe_signature(signode) self.leftSpecs.describe_signature(signode, env, symbol)
addSpace = len(signode) != numChildren addSpace = len(signode) != numChildren
if self.trailingTypeSpec: if self.trailingTypeSpec:
@ -2249,7 +2306,7 @@ class ASTDeclSpecs(ASTBase):
if len(str(self.rightSpecs)) > 0: if len(str(self.rightSpecs)) > 0:
if addSpace: if addSpace:
signode += addnodes.desc_sig_space() signode += addnodes.desc_sig_space()
self.rightSpecs.describe_signature(signode) self.rightSpecs.describe_signature(signode, env, symbol)
# Declarator # Declarator
@ -4942,8 +4999,8 @@ class DefinitionParser(BaseParser):
# those without signedness and size modifiers # those without signedness and size modifiers
# see https://en.cppreference.com/w/cpp/language/types # see https://en.cppreference.com/w/cpp/language/types
_simple_fundemental_types = ( _simple_fundemental_types = (
'void', 'bool', 'char', 'wchar_t', 'char16_t', 'char32_t', 'int', 'void', 'bool', 'char', 'wchar_t', 'char8_t', 'char16_t', 'char32_t',
'float', 'double', 'auto' 'int', 'float', 'double', 'auto'
) )
_prefix_keys = ('class', 'struct', 'enum', 'union', 'typename') _prefix_keys = ('class', 'struct', 'enum', 'union', 'typename')
@ -5815,7 +5872,19 @@ class DefinitionParser(BaseParser):
prefix = k prefix = k
break break
nestedName = self._parse_nested_name() nestedName = self._parse_nested_name()
return ASTTrailingTypeSpecName(prefix, nestedName) self.skip_ws()
placeholderType = None
if self.skip_word('auto'):
placeholderType = 'auto'
elif self.skip_word_and_ws('decltype'):
if not self.skip_string_and_ws('('):
self.fail("Expected '(' after 'decltype' in placeholder type specifier.")
if not self.skip_word_and_ws('auto'):
self.fail("Expected 'auto' after 'decltype(' in placeholder type specifier.")
if not self.skip_string_and_ws(')'):
self.fail("Expected ')' after 'decltype(auto' in placeholder type specifier.")
placeholderType = 'decltype(auto)'
return ASTTrailingTypeSpecName(prefix, nestedName, placeholderType)
def _parse_parameters_and_qualifiers(self, paramMode: str) -> ASTParametersQualifiers: def _parse_parameters_and_qualifiers(self, paramMode: str) -> ASTParametersQualifiers:
if paramMode == 'new': if paramMode == 'new':
@ -5929,14 +5998,24 @@ class DefinitionParser(BaseParser):
threadLocal = None threadLocal = None
inline = None inline = None
virtual = None virtual = None
explicit = None explicitSpec = None
consteval = None
constexpr = None constexpr = None
constinit = None
volatile = None volatile = None
const = None const = None
friend = None friend = None
attrs = [] attrs = []
while 1: # accept any permutation of a subset of some decl-specs while 1: # accept any permutation of a subset of some decl-specs
self.skip_ws() self.skip_ws()
if not const and typed:
const = self.skip_word('const')
if const:
continue
if not volatile and typed:
volatile = self.skip_word('volatile')
if volatile:
continue
if not storage: if not storage:
if outer in ('member', 'function'): if outer in ('member', 'function'):
if self.skip_word('static'): if self.skip_word('static'):
@ -5952,16 +6031,28 @@ class DefinitionParser(BaseParser):
if self.skip_word('register'): if self.skip_word('register'):
storage = 'register' storage = 'register'
continue continue
if not threadLocal and outer == 'member': if not inline and outer in ('function', 'member'):
threadLocal = self.skip_word('thread_local') inline = self.skip_word('inline')
if threadLocal: if inline:
continue
if not constexpr and outer in ('member', 'function'):
constexpr = self.skip_word("constexpr")
if constexpr:
continue continue
if outer == 'member':
if not constinit:
constinit = self.skip_word('constinit')
if constinit:
continue
if not threadLocal:
threadLocal = self.skip_word('thread_local')
if threadLocal:
continue
if outer == 'function': if outer == 'function':
# function-specifiers if not consteval:
if not inline: consteval = self.skip_word('consteval')
inline = self.skip_word('inline') if consteval:
if inline:
continue continue
if not friend: if not friend:
friend = self.skip_word('friend') friend = self.skip_word('friend')
@ -5971,31 +6062,28 @@ class DefinitionParser(BaseParser):
virtual = self.skip_word('virtual') virtual = self.skip_word('virtual')
if virtual: if virtual:
continue continue
if not explicit: if not explicitSpec:
explicit = self.skip_word('explicit') explicit = self.skip_word_and_ws('explicit')
if explicit: if explicit:
expr: ASTExpression = None
if self.skip_string('('):
expr = self._parse_constant_expression(inTemplate=False)
if not expr:
self.fail("Expected constant expression after '('" +
" in explicit specifier.")
self.skip_ws()
if not self.skip_string(')'):
self.fail("Expected ')' to end explicit specifier.")
explicitSpec = ASTExplicitSpec(expr)
continue continue
if not constexpr and outer in ('member', 'function'):
constexpr = self.skip_word("constexpr")
if constexpr:
continue
if not volatile and typed:
volatile = self.skip_word('volatile')
if volatile:
continue
if not const and typed:
const = self.skip_word('const')
if const:
continue
attr = self._parse_attribute() attr = self._parse_attribute()
if attr: if attr:
attrs.append(attr) attrs.append(attr)
continue continue
break break
return ASTDeclSpecsSimple(storage, threadLocal, inline, virtual, return ASTDeclSpecsSimple(storage, threadLocal, inline, virtual,
explicit, constexpr, volatile, const, explicitSpec, consteval, constexpr, constinit,
friend, attrs) volatile, const, friend, attrs)
def _parse_decl_specs(self, outer: str, typed: bool = True) -> ASTDeclSpecs: def _parse_decl_specs(self, outer: str, typed: bool = True) -> ASTDeclSpecs:
if outer: if outer:
@ -7807,7 +7895,7 @@ def setup(app: Sphinx) -> Dict[str, Any]:
return { return {
'version': 'builtin', 'version': 'builtin',
'env_version': 3, 'env_version': 4,
'parallel_read_safe': True, 'parallel_read_safe': True,
'parallel_write_safe': True, 'parallel_write_safe': True,
} }

View File

@ -1982,11 +1982,13 @@ class DataDocumenter(GenericAliasMixin, NewTypeMixin, TypeVarMixin,
self.add_line(' :annotation: %s' % self.options.annotation, self.add_line(' :annotation: %s' % self.options.annotation,
sourcename) sourcename)
else: else:
# obtain annotation for this data if self.config.autodoc_typehints != 'none':
annotations = get_type_hints(self.parent, None, self.config.autodoc_type_aliases) # obtain annotation for this data
if self.objpath[-1] in annotations: annotations = get_type_hints(self.parent, None,
objrepr = stringify_typehint(annotations.get(self.objpath[-1])) self.config.autodoc_type_aliases)
self.add_line(' :type: ' + objrepr, sourcename) if self.objpath[-1] in annotations:
objrepr = stringify_typehint(annotations.get(self.objpath[-1]))
self.add_line(' :type: ' + objrepr, sourcename)
try: try:
if self.options.no_value or self.should_suppress_value_header(): if self.options.no_value or self.should_suppress_value_header():
@ -2584,11 +2586,13 @@ class AttributeDocumenter(GenericAliasMixin, NewTypeMixin, SlotsMixin, # type:
elif self.options.annotation: elif self.options.annotation:
self.add_line(' :annotation: %s' % self.options.annotation, sourcename) self.add_line(' :annotation: %s' % self.options.annotation, sourcename)
else: else:
# obtain type annotation for this attribute if self.config.autodoc_typehints != 'none':
annotations = get_type_hints(self.parent, None, self.config.autodoc_type_aliases) # obtain type annotation for this attribute
if self.objpath[-1] in annotations: annotations = get_type_hints(self.parent, None,
objrepr = stringify_typehint(annotations.get(self.objpath[-1])) self.config.autodoc_type_aliases)
self.add_line(' :type: ' + objrepr, sourcename) if self.objpath[-1] in annotations:
objrepr = stringify_typehint(annotations.get(self.objpath[-1]))
self.add_line(' :type: ' + objrepr, sourcename)
try: try:
if self.options.no_value or self.should_suppress_value_header(): if self.options.no_value or self.should_suppress_value_header():
@ -2672,7 +2676,7 @@ class PropertyDocumenter(DocstringStripSignatureMixin, ClassLevelDocumenter): #
if inspect.isabstractmethod(self.object): if inspect.isabstractmethod(self.object):
self.add_line(' :abstractmethod:', sourcename) self.add_line(' :abstractmethod:', sourcename)
if safe_getattr(self.object, 'fget', None): if safe_getattr(self.object, 'fget', None) and self.config.autodoc_typehints != 'none':
try: try:
signature = inspect.signature(self.object.fget, signature = inspect.signature(self.object.fget,
type_aliases=self.config.autodoc_type_aliases) type_aliases=self.config.autodoc_type_aliases)

View File

@ -79,7 +79,7 @@ def install_mathjax(app: Sphinx, pagename: str, templatename: str, context: Dict
'mathjax extension to work') 'mathjax extension to work')
domain = cast(MathDomain, app.env.get_domain('math')) domain = cast(MathDomain, app.env.get_domain('math'))
if domain.has_equations(pagename): if app.registry.html_assets_policy == 'always' or domain.has_equations(pagename):
# Enable mathjax only if equations exists # Enable mathjax only if equations exists
options = {'async': 'async'} options = {'async': 'async'}
if app.config.mathjax_options: if app.config.mathjax_options:

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-16 04:46+0000\n" "PO-Revision-Date: 2021-05-16 04:46+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"
@ -74,7 +74,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "تحميل الترجمات [ %s ]" msgstr "تحميل الترجمات [ %s ]"
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "تم" msgstr "تم"
@ -627,7 +627,7 @@ msgstr "تجهيز المستندات"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "نسخ الصور..." msgstr "نسخ الصور..."
@ -637,7 +637,7 @@ msgstr "نسخ الصور..."
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -880,7 +880,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "الفهرس العام" msgstr "الفهرس العام"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "الفهرس" msgstr "الفهرس"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "التالي" msgstr "التالي"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "السابق" msgstr "السابق"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "إنشاء الفهرس" msgstr "إنشاء الفهرس"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "كتابة صفحات إضافية " msgstr "كتابة صفحات إضافية "
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "نسخ الملفات القابلة للتحميل للنسخ..." msgstr "نسخ الملفات القابلة للتحميل للنسخ..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s" msgstr "غير قادر على نسخ الملفات القابلة للتحميل %r : %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "غير قادر على نسخ الملف الثابت %r" msgstr "غير قادر على نسخ الملف الثابت %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "نسخ ملفات إضافية" msgstr "نسخ ملفات إضافية"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "غير قادر على نسخ المف الإضافي %r" msgstr "غير قادر على نسخ المف الإضافي %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "ملف الشعار %r غير موجود" msgstr "ملف الشعار %r غير موجود"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "ملف الايقونة %r غير موجود" msgstr "ملف الايقونة %r غير موجود"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1833,71 +1833,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "متغير" msgstr "متغير"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "نوع" msgstr "نوع"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "كائن" msgstr "كائن"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3469,11 +3469,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "فشل" msgstr "فشل"
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-06 00:16+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"
@ -910,7 +910,7 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1838,12 +1838,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
@ -1858,7 +1858,7 @@ msgstr ""
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
@ -1866,7 +1866,7 @@ msgstr ""
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
@ -1879,23 +1879,23 @@ msgstr ""
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n"
@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1839,12 +1839,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "প্যারামিটার" msgstr "প্যারামিটার"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "রিটার্নস" msgstr "রিটার্নস"
@ -1859,7 +1859,7 @@ msgstr "রিটার্ন টাইপ"
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
@ -1867,7 +1867,7 @@ msgstr ""
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "ফাংশন" msgstr "ফাংশন"
@ -1880,23 +1880,23 @@ msgstr ""
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "ক্লাস" msgstr "ক্লাস"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "পাদটীকা" msgstr "পাদটীকা"
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[ছবি]" msgstr "[ছবি]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-06 00:16+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n"
@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1839,12 +1839,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Paràmetres" msgstr "Paràmetres"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Retorna" msgstr "Retorna"
@ -1859,7 +1859,7 @@ msgstr "Tipus de retorn"
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membre" msgstr "membre"
@ -1867,7 +1867,7 @@ msgstr "membre"
msgid "variable" msgid "variable"
msgstr "variable" msgstr "variable"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funció" msgstr "funció"
@ -1880,23 +1880,23 @@ msgstr "macro"
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipus" msgstr "tipus"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "class" msgstr "class"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[imatge]" msgstr "[imatge]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n"
@ -73,7 +73,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "xk'isïk" msgstr "xk'isïk"
@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -911,158 +911,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Konojel cholwuj" msgstr "Konojel cholwuj"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "cholwuj" msgstr "cholwuj"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "jun chïk" msgstr "jun chïk"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "chi rij kan" msgstr "chi rij kan"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1832,71 +1832,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Jalajöj" msgstr "Jalajöj"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "retal jalöj" msgstr "retal jalöj"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "Ruwäch" msgstr "Ruwäch"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3468,11 +3468,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[wachib'äl: %s]" msgstr "[wachib'äl: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[wachib'äl]" msgstr "[wachib'äl]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n"
@ -74,7 +74,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -627,7 +627,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -637,7 +637,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -880,7 +880,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d.%m.%Y" msgstr "%d.%m.%Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Obecný rejstřík" msgstr "Obecný rejstřík"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "rejstřík" msgstr "rejstřík"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "další" msgstr "další"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "předchozí" msgstr "předchozí"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Dokumentace pro %s %s" msgstr "Dokumentace pro %s %s"
@ -1833,71 +1833,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametry" msgstr "Parametry"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Vrací" msgstr "Vrací"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Typ návratové hodnoty" msgstr "Typ návratové hodnoty"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "člen" msgstr "člen"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "proměnná" msgstr "proměnná"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkce" msgstr "funkce"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "typ" msgstr "typ"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Vyvolá" msgstr "Vyvolá"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "třída" msgstr "třída"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3469,11 +3469,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Poznámky pod čarou" msgstr "Poznámky pod čarou"
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[obrázek: %s]" msgstr "[obrázek: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[obrázek]" msgstr "[obrázek]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n"
@ -74,7 +74,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -627,7 +627,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -637,7 +637,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -880,7 +880,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Indecs cyffredinol" msgstr "Indecs cyffredinol"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indecs" msgstr "indecs"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "nesaf" msgstr "nesaf"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "blaenorol" msgstr "blaenorol"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Dogfennaeth %s %s " msgstr "Dogfennaeth %s %s "
@ -1833,71 +1833,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Paramedrau" msgstr "Paramedrau"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "aelod" msgstr "aelod"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "ffwythiant" msgstr "ffwythiant"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3469,11 +3469,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Troednodiadau" msgstr "Troednodiadau"
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[delwedd: %s]" msgstr "[delwedd: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[delwedd]" msgstr "[delwedd]"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n"
@ -76,7 +76,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "indlæser oversættelser [%s] ..." msgstr "indlæser oversættelser [%s] ..."
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "færdig" msgstr "færdig"
@ -629,7 +629,7 @@ msgstr "forbereder dokumenter"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -639,7 +639,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -764,7 +764,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "ugyldig css_file: %r, ignoreret" msgstr "ugyldig css_file: %r, ignoreret"
@ -882,7 +882,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -914,158 +914,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d. %b, %Y" msgstr "%d. %b, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Generelt indeks" msgstr "Generelt indeks"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indeks" msgstr "indeks"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "næste" msgstr "næste"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "forrige" msgstr "forrige"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "kan ikke kopiere statisk fil %r" msgstr "kan ikke kopiere statisk fil %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "udgyldig js_file: %r, ignoreret" msgstr "udgyldig js_file: %r, ignoreret"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "favicon-filen %r findes ikke" msgstr "favicon-filen %r findes ikke"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s dokumentation" msgstr "%s %s dokumentation"
@ -1835,71 +1835,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametre" msgstr "Parametre"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Returnerer" msgstr "Returnerer"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Returtype" msgstr "Returtype"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "medlem" msgstr "medlem"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variabel" msgstr "variabel"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funktion" msgstr "funktion"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "optæl" msgstr "optæl"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "optælling" msgstr "optælling"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "type" msgstr "type"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1928,36 +1928,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Template-parametre" msgstr "Template-parametre"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Kaster" msgstr "Kaster"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasse" msgstr "klasse"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "koncept" msgstr "koncept"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3471,11 +3471,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3573,7 +3573,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Fodnoter" msgstr "Fodnoter"
@ -3593,12 +3593,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[billede: %s]" msgstr "[billede: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[billede]" msgstr "[billede]"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n"
@ -76,7 +76,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "Lade Übersetzungen [%s]…" msgstr "Lade Übersetzungen [%s]…"
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "erledigt" msgstr "erledigt"
@ -629,7 +629,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -639,7 +639,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -764,7 +764,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -882,7 +882,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -914,158 +914,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d.%m.%Y" msgstr "%d.%m.%Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Stichwortverzeichnis" msgstr "Stichwortverzeichnis"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "Index" msgstr "Index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "weiter" msgstr "weiter"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "zurück" msgstr "zurück"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s Dokumentation" msgstr "%s %s Dokumentation"
@ -1835,71 +1835,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s-%s" msgstr "%s-%s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parameter" msgstr "Parameter"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Rückgabe" msgstr "Rückgabe"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Rückgabetyp" msgstr "Rückgabetyp"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "Member" msgstr "Member"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "Variable" msgstr "Variable"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "Funktion" msgstr "Funktion"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "Makro" msgstr "Makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "Aufzählung" msgstr "Aufzählung"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "Enumerator" msgstr "Enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "Typ" msgstr "Typ"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1928,36 +1928,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Template Parameter" msgstr "Template Parameter"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Wirft" msgstr "Wirft"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "Klasse" msgstr "Klasse"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3471,11 +3471,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3573,7 +3573,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Fußnoten" msgstr "Fußnoten"
@ -3593,12 +3593,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[Bild: %s]" msgstr "[Bild: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[Bild]" msgstr "[Bild]"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n"
@ -75,7 +75,7 @@ msgstr "η 'παραμετροποίηση' σύμφωνα με τον τρέχ
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "φόρτωση μεταφράσεων [%s]..." msgstr "φόρτωση μεταφράσεων [%s]..."
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "ολοκλήρωση" msgstr "ολοκλήρωση"
@ -628,7 +628,7 @@ msgstr "προετοιμασία κειμένων"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s" msgstr "βρέθηκε διπλότυπη εγγραφή ToC: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "αντιγραφή εικόνων..." msgstr "αντιγραφή εικόνων..."
@ -638,7 +638,7 @@ msgstr "αντιγραφή εικόνων..."
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί" msgstr "δεν είναι δυνατή η ανάγωνση αρχείου εικόνας %r: αντί αυτού θα αντιγραφεί"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -763,7 +763,7 @@ msgstr "η τιμή παραμετροποίησης \"epub_identifier\" δεν
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3" msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπει να είναι κενή για EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί"
@ -881,7 +881,7 @@ msgstr "σφάλμα κατά την εγγραφή του αρχείου Makefi
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s." msgstr "Τα αρχεία κειένου βρίσκονται σε %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -913,158 +913,158 @@ msgid "Failed to read build info file: %r"
msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r" msgstr "Αδυναμία ανάγνωσης αρχείου πληροφοριών μεταγλώττισης: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %B %Y" msgstr "%d %B %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Κεντρικό Ευρετήριοο" msgstr "Κεντρικό Ευρετήριοο"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "ευρετήριο" msgstr "ευρετήριο"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "επόμενο" msgstr "επόμενο"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "προηγούμενο" msgstr "προηγούμενο"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "αντιγραφή αρχείων μεταφόρτωσης..." msgstr "αντιγραφή αρχείων μεταφόρτωσης..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s" msgstr "δεν είναι δυνατή η αντιγραφή του μεταφορτωμένου αρχείου %r: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r" msgstr "δεν είναι δυνατή η αντιγραφή στατικού αρχείου %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r" msgstr "δεν είναι δυνατή η αντιγραφή του επιπλέον αρχείου %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r" msgstr "Αδυναμία εγγραφής του αρχείου πληροφοριών μεταγλώττισης: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "ο κατάλογος εύρεσης δεν ήταν δυνατό να φορτωθεί, αλλά δε θα μεταγλωττιστούν όλα τα έγγραφα: ο κατάλογος δε θα είναι πλήρης." msgstr "ο κατάλογος εύρεσης δεν ήταν δυνατό να φορτωθεί, αλλά δε θα μεταγλωττιστούν όλα τα έγγραφα: ο κατάλογος δε θα είναι πλήρης."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "η σελιδα %s ταιριάζει δύο σχέδια στo html_sidebars: %r and %r" msgstr "η σελιδα %s ταιριάζει δύο σχέδια στo html_sidebars: %r and %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "ένα σφάλμα Unicode παρουσιάστηκε κατά τη δημιουργία της σελίδας %s. Παρακαλείστε να επιβεβαιώσετε ότι όλες οι τιμές παραμετροποίησης οι οποίες περιλαμβάνουν μη-ASCII περιεχόμενο είναι στοιχειοσειρές Unicode." msgstr "ένα σφάλμα Unicode παρουσιάστηκε κατά τη δημιουργία της σελίδας %s. Παρακαλείστε να επιβεβαιώσετε ότι όλες οι τιμές παραμετροποίησης οι οποίες περιλαμβάνουν μη-ASCII περιεχόμενο είναι στοιχειοσειρές Unicode."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r " msgstr "Ένα σφάλμα συνέβη κατά τη σύνθεση της σελίδας %s.\n\nΑιτία %r "
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί" msgstr "ανέγκυρο js_file: %r, θα αγνοηθεί"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer." msgstr "Πολλά math_renderers έχουν καταγραφεί. Αλλά δεν έχει επιλεγεί κανένα math_renderer."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "Δόθηκε άγνωστο math_renderer %r." msgstr "Δόθηκε άγνωστο math_renderer %r."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει" msgstr "Η εγγραφή html_extra_path %r δεν υπάρχει"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "η εγγραφή html_static_path %r δεν υπάρχει" msgstr "η εγγραφή html_static_path %r δεν υπάρχει"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "το αρχείο logo %r δεν υπάρχει" msgstr "το αρχείο logo %r δεν υπάρχει"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "το αρχείο favicon %r δεν υπάρχει" msgstr "το αρχείο favicon %r δεν υπάρχει"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Τεκμηρίωση του %s - %s" msgstr "Τεκμηρίωση του %s - %s"
@ -1834,71 +1834,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Παράμετροι" msgstr "Παράμετροι"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Επιστρέφει" msgstr "Επιστρέφει"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Επιστρεφόμενος τύπος" msgstr "Επιστρεφόμενος τύπος"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "μέλος" msgstr "μέλος"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "μεταβλητή" msgstr "μεταβλητή"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "συνάρτηση" msgstr "συνάρτηση"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "μακροεντολή" msgstr "μακροεντολή"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "ένωση" msgstr "ένωση"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "τύπος" msgstr "τύπος"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1927,36 +1927,36 @@ msgstr "διπλότυπη ετικέτα %s, άλλη εμφάνιση στο %
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "Η παραπομπή [%s] δεν αναφέρεται." msgstr "Η παραπομπή [%s] δεν αναφέρεται."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Παράμετροι Προτύπου" msgstr "Παράμετροι Προτύπου"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Προκαλεί" msgstr "Προκαλεί"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "κλάση" msgstr "κλάση"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "έννοια" msgstr "έννοια"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3470,11 +3470,11 @@ msgstr "Άγνωστος τύπος αρχείου: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r" msgstr "μη κωδικοποιήσιμοι χαρακτήρες πηγής, θα αντικατασταθούν με \"?\": %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "παράβλεψη" msgstr "παράβλεψη"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "αποτυχία" msgstr "αποτυχία"
@ -3572,7 +3572,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα" msgstr "ο ανακαλυφθέν τίτλος κόμβος δεν βρίσκεται σε τομέα, θέμα, πίνακα, προειδοποίηση ή πλαϊνή μπάρα"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Σημειώσεις υποσέλιδου" msgstr "Σημειώσεις υποσέλιδου"
@ -3592,12 +3592,12 @@ msgstr "η μονάδα διάστασης %s δεν είναι έγκυρη. Θ
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s" msgstr "βρέθηκε άγνωστος τύπος εγγραφής ευρετηρίου %s"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[εικόνα: %s]" msgstr "[εικόνα: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[εικόνα]" msgstr "[εικόνα]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n"
@ -73,7 +73,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -911,158 +911,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Indico universala" msgstr "Indico universala"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indico" msgstr "indico"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "sekva" msgstr "sekva"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "antaŭa" msgstr "antaŭa"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s dokumentaro" msgstr "%s %s dokumentaro"
@ -1832,71 +1832,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametroj" msgstr "Parametroj"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membro" msgstr "membro"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcio" msgstr "funkcio"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "nomaĵo" msgstr "nomaĵo"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klaso" msgstr "klaso"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3468,11 +3468,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -14,7 +14,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n"
@ -79,7 +79,7 @@ msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "cargando traducciones [%s]... " msgstr "cargando traducciones [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "hecho" msgstr "hecho"
@ -632,7 +632,7 @@ msgstr "preparando documentos"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "entrada de tabla de contenido duplicada encontrada: %s" msgstr "entrada de tabla de contenido duplicada encontrada: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "copiando imágenes..." msgstr "copiando imágenes..."
@ -642,7 +642,7 @@ msgstr "copiando imágenes..."
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "no puede leer el archivo de imagen %r: en su lugar, lo copia" msgstr "no puede leer el archivo de imagen %r: en su lugar, lo copia"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -767,7 +767,7 @@ msgstr "el valor de configuración \"epub_identifier\" no debe estar vacío para
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3" msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "css_file inválido: %r, ignorado" msgstr "css_file inválido: %r, ignorado"
@ -885,7 +885,7 @@ msgstr "error escribiendo archivo Makefile: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Los archivos de texto están en %(outdir)s." msgstr "Los archivos de texto están en %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -917,158 +917,158 @@ msgid "Failed to read build info file: %r"
msgstr "Error al leer la información de compilación del fichero: %r" msgstr "Error al leer la información de compilación del fichero: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d de %B de %Y" msgstr "%d de %B de %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Índice General" msgstr "Índice General"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "índice" msgstr "índice"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "siguiente" msgstr "siguiente"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "anterior" msgstr "anterior"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "generando índices" msgstr "generando índices"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "escribiendo páginas adicionales" msgstr "escribiendo páginas adicionales"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "copiando archivos descargables..." msgstr "copiando archivos descargables..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "no se puede copiar archivo descargable %r: %s" msgstr "no se puede copiar archivo descargable %r: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "no se puede copiar archivo estático %r" msgstr "no se puede copiar archivo estático %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "copiando archivos extras" msgstr "copiando archivos extras"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "no se puede copiar archivo extra %r" msgstr "no se puede copiar archivo extra %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Error al escribir el archivo de información de compilación: %r" msgstr "Error al escribir el archivo de información de compilación: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los documentos: el índice estará incompleto." msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los documentos: el índice estará incompleto."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "La página %s coincide con dos patrones en html_sidebars: %r y %r" msgstr "La página %s coincide con dos patrones en html_sidebars: %r y %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de que todos los valores de configuración que contengan contenido que no sea ASCII sean cadenas Unicode." msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de que todos los valores de configuración que contengan contenido que no sea ASCII sean cadenas Unicode."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Ha ocurrido un error al renderizar la pagina %s. Motivo: %r" msgstr "Ha ocurrido un error al renderizar la pagina %s. Motivo: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "volcar inventario de objetos" msgstr "volcar inventario de objetos"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "volcar el índice de búsqueda en %s" msgstr "volcar el índice de búsqueda en %s"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "js_file inválido: %r, ignorado" msgstr "js_file inválido: %r, ignorado"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Muchos math_renderers están registrados. Pero no se ha seleccionado math_renderer." msgstr "Muchos math_renderers están registrados. Pero no se ha seleccionado math_renderer."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "Desconocido math_renderer %r es dado." msgstr "Desconocido math_renderer %r es dado."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "entrada html_extra_path %r no existe" msgstr "entrada html_extra_path %r no existe"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "entrada html_extra_path %r se coloca dentro de outdir" msgstr "entrada html_extra_path %r se coloca dentro de outdir"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "entrada html_static_path %r no existe" msgstr "entrada html_static_path %r no existe"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "entrada html_static_path %r se coloca dentro de outdir" msgstr "entrada html_static_path %r se coloca dentro de outdir"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "archivo de logo %r no existe" msgstr "archivo de logo %r no existe"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "el archivo %r usado para el favicon no existe" msgstr "el archivo %r usado para el favicon no existe"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "documentación de %s - %s" msgstr "documentación de %s - %s"
@ -1838,71 +1838,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parámetros" msgstr "Parámetros"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Devuelve" msgstr "Devuelve"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Tipo del valor devuelto" msgstr "Tipo del valor devuelto"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "miembro" msgstr "miembro"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variable" msgstr "variable"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "función" msgstr "función"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "unión" msgstr "unión"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumeración" msgstr "enumeración"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1931,36 +1931,36 @@ msgstr "citación duplicada %s, otra instancia en %s"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "Citación [%s] no está referenciada." msgstr "Citación [%s] no está referenciada."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parametros de Plantilla" msgstr "Parametros de Plantilla"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Lanzamientos" msgstr "Lanzamientos"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "clase" msgstr "clase"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "concepto" msgstr "concepto"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3474,11 +3474,11 @@ msgstr "Formato de imagen desconocido: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "caracteres fuente no codificables, reemplazando con \"?\": %r" msgstr "caracteres fuente no codificables, reemplazando con \"?\": %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "omitido" msgstr "omitido"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "fallado" msgstr "fallado"
@ -3576,7 +3576,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "no se encontró el nodo de título en la sección, tema, tabla, advertencia o barra lateral" msgstr "no se encontró el nodo de título en la sección, tema, tabla, advertencia o barra lateral"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Notas a pie de página" msgstr "Notas a pie de página"
@ -3596,12 +3596,12 @@ msgstr "la unidad de dimensión %s no es válida. Ignorado."
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "tipo de entrada de índice desconocido %s encontrado" msgstr "tipo de entrada de índice desconocido %s encontrado"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[imagen: %s]" msgstr "[imagen: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[imagen]" msgstr "[imagen]"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n"
@ -76,7 +76,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "tõlgete laadimine [%s]... " msgstr "tõlgete laadimine [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "valmis" msgstr "valmis"
@ -629,7 +629,7 @@ msgstr "dokumentide ettevalmistamine"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "kujutiste kopeerimine... " msgstr "kujutiste kopeerimine... "
@ -639,7 +639,7 @@ msgstr "kujutiste kopeerimine... "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -764,7 +764,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "vigane css_file: %r, eiratakse" msgstr "vigane css_file: %r, eiratakse"
@ -882,7 +882,7 @@ msgstr "viga faili Makefile kirjutamisel: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Tekstifailid asuvad kataloogis %(outdir)s." msgstr "Tekstifailid asuvad kataloogis %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -914,158 +914,158 @@ msgid "Failed to read build info file: %r"
msgstr "Viga ehitamise infofaili lugemisel: %r" msgstr "Viga ehitamise infofaili lugemisel: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d. %b %Y" msgstr "%d. %b %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Üldindeks" msgstr "Üldindeks"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indeks" msgstr "indeks"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "järgmine" msgstr "järgmine"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "eelmine" msgstr "eelmine"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "indeksite genereerimine" msgstr "indeksite genereerimine"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "täiendavate lehtede kirjutamine" msgstr "täiendavate lehtede kirjutamine"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "allalaaditavate failide kopeerimine..." msgstr "allalaaditavate failide kopeerimine..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "staatilist faili %r pole võimalik kopeerida" msgstr "staatilist faili %r pole võimalik kopeerida"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "lisafailide kopeerimine" msgstr "lisafailide kopeerimine"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "lisafaili %r pole võimalik kopeerida" msgstr "lisafaili %r pole võimalik kopeerida"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Viga ehitamise infofaili kirjutamisel: %r" msgstr "Viga ehitamise infofaili kirjutamisel: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "lehe %s renderdamisel tekkis Unicode viga. Palun veendu, et kõik mitte-ASCII sisuga seadistusparameetrid on kirjeldatud Unicode stringidena." msgstr "lehe %s renderdamisel tekkis Unicode viga. Palun veendu, et kõik mitte-ASCII sisuga seadistusparameetrid on kirjeldatud Unicode stringidena."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "otsinguindeksi tõmmise kirjutamine keelele %s" msgstr "otsinguindeksi tõmmise kirjutamine keelele %s"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "vigane js_file: %r, eiratakse" msgstr "vigane js_file: %r, eiratakse"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "html_extra_path kirjet %r pole olemas" msgstr "html_extra_path kirjet %r pole olemas"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "html_extra_path kirje %r asub väljaspool väljundkataloogi" msgstr "html_extra_path kirje %r asub väljaspool väljundkataloogi"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "logofaili %r pole olemas" msgstr "logofaili %r pole olemas"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "favicon faili %r pole olemas" msgstr "favicon faili %r pole olemas"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s dokumentatsioon" msgstr "%s %s dokumentatsioon"
@ -1835,71 +1835,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parameetrid" msgstr "Parameetrid"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Tagastab" msgstr "Tagastab"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Tagastustüüp" msgstr "Tagastustüüp"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "liige" msgstr "liige"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "muutuja" msgstr "muutuja"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funktsioon" msgstr "funktsioon"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "loend" msgstr "loend"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tüüp" msgstr "tüüp"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1928,36 +1928,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Malli parameetrid" msgstr "Malli parameetrid"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klass" msgstr "klass"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3471,11 +3471,11 @@ msgstr "Tundmatu pildivorming: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3573,7 +3573,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Joonealused märkused" msgstr "Joonealused märkused"
@ -3593,12 +3593,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[pilt: %s]" msgstr "[pilt: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[pilt]" msgstr "[pilt]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n"
@ -912,7 +912,7 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1840,12 +1840,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametroak" msgstr "Parametroak"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Itzultzen du" msgstr "Itzultzen du"
@ -1860,7 +1860,7 @@ msgstr "Itzulketa mota"
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "partaidea" msgstr "partaidea"
@ -1868,7 +1868,7 @@ msgstr "partaidea"
msgid "variable" msgid "variable"
msgstr "aldagaia" msgstr "aldagaia"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funtzioa" msgstr "funtzioa"
@ -1881,23 +1881,23 @@ msgstr "makroa"
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "mota" msgstr "mota"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Jaurtitzen du" msgstr "Jaurtitzen du"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasea" msgstr "klasea"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Oin-oharrak" msgstr "Oin-oharrak"
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[irudia]" msgstr "[irudia]"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 16:47+0000\n" "PO-Revision-Date: 2021-05-11 16:47+0000\n"
"Last-Translator: Hadi F <h_adi_f@yahoo.com>\n" "Last-Translator: Hadi F <h_adi_f@yahoo.com>\n"
"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n"
@ -76,7 +76,7 @@ msgstr "'setup' آن طور که در conf.py تعریف شده شیئ قابل
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "بارگذاری ترجمه ها [%s]... " msgstr "بارگذاری ترجمه ها [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "انجام شد" msgstr "انجام شد"
@ -629,7 +629,7 @@ msgstr "آماده سازی اسناد"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s" msgstr "عنوان تکراری در فهرست مطالب پیدا شد:%s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "در حال رونوشت از تصاویر... " msgstr "در حال رونوشت از تصاویر... "
@ -639,7 +639,7 @@ msgstr "در حال رونوشت از تصاویر... "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "امکان خواندن پرونده‌ی تصویری %r نبود: در عوض کپی می‌شود" msgstr "امکان خواندن پرونده‌ی تصویری %r نبود: در عوض کپی می‌شود"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -764,7 +764,7 @@ msgstr "مقدار پیکربندی شناسه (\"epub_identifier\") نباید
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد" msgstr "مقدار پیکربندی ویراست (\"version\") نباید برای نسخه‌ی سوم پرونده‌های انتشار الکترونیک(EPUB3) خالی باشد"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود" msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود"
@ -882,7 +882,7 @@ msgstr "خطای نوشتن پرونده‌ی ساخت (Makefile) : %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "پرونده‌ی متنی در پوشه‌ی %(outdir)s است." msgstr "پرونده‌ی متنی در پوشه‌ی %(outdir)s است."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -914,158 +914,158 @@ msgid "Failed to read build info file: %r"
msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: %r" msgstr "شکست در خواندن پرونده‌ی اطّلاعات ساخت: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "فهرست کلی" msgstr "فهرست کلی"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "فهرست" msgstr "فهرست"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "بعدی" msgstr "بعدی"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "قبلی" msgstr "قبلی"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "تولید نمایه‌ها" msgstr "تولید نمایه‌ها"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "نوشتن صفحات اضافی" msgstr "نوشتن صفحات اضافی"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "رونوشت از پرونده‌های قابل دریافت... " msgstr "رونوشت از پرونده‌های قابل دریافت... "
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "نمی تواند از پرونده‌ی قابل دریافت %r: %s رونوشت بگیرد" msgstr "نمی تواند از پرونده‌ی قابل دریافت %r: %s رونوشت بگیرد"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "شکست در رونوشت یک پرونده‌ی به html_static_file: %s: %r" msgstr "شکست در رونوشت یک پرونده‌ی به html_static_file: %s: %r"
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "رونوشت از پرونده‌های ثابت" msgstr "رونوشت از پرونده‌های ثابت"
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "نمی تواند از پرونده‌ی ثابت %r رونوشت بگیرد" msgstr "نمی تواند از پرونده‌ی ثابت %r رونوشت بگیرد"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "رونوشت برداری از پرونده‌های اضافی" msgstr "رونوشت برداری از پرونده‌های اضافی"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "نمی تواند از پرونده‌ی اضافه‌ی %r رونوشت بگیرد" msgstr "نمی تواند از پرونده‌ی اضافه‌ی %r رونوشت بگیرد"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "شکست در نوشتن پرونده‌ی اطّلاعات ساخت: %r" msgstr "شکست در نوشتن پرونده‌ی اطّلاعات ساخت: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "نمایه‌ی جستجو نمی‌تواند بارگزاری شود، ولی برای همه‌ی مستندات ساخته‌ نمی‌شود: نمایه‌ ناقص خواهد بود." msgstr "نمایه‌ی جستجو نمی‌تواند بارگزاری شود، ولی برای همه‌ی مستندات ساخته‌ نمی‌شود: نمایه‌ ناقص خواهد بود."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "صفحه‌ی %s با دو الگو در نوار کناری صفحه (html_sidebars) هم‌خوانی دارد: %r و%r" msgstr "صفحه‌ی %s با دو الگو در نوار کناری صفحه (html_sidebars) هم‌خوانی دارد: %r و%r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "هنگام ارائه‌ی صفحه‌ی %s خطای یونیکد رخ داد. لطفاً اطمینان حاصل کنید که تمام مقدارهای پیکربندی‌ها دارای محتوای غیر اَسکی، رشته‌متن‌های یونکد هستند." msgstr "هنگام ارائه‌ی صفحه‌ی %s خطای یونیکد رخ داد. لطفاً اطمینان حاصل کنید که تمام مقدارهای پیکربندی‌ها دارای محتوای غیر اَسکی، رشته‌متن‌های یونکد هستند."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "خطایی در نمایش صفحه‌ی %s رخ داد.\nعلّت: %r" msgstr "خطایی در نمایش صفحه‌ی %s رخ داد.\nعلّت: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "خالی کردن فهرست اشیاء" msgstr "خالی کردن فهرست اشیاء"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "خالی کردن نمایه‌ی جستجو در %s" msgstr "خالی کردن نمایه‌ی جستجو در %s"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "پرونده‌ی js نامعتبر%r: نادیده گرفته می‌شود" msgstr "پرونده‌ی js نامعتبر%r: نادیده گرفته می‌شود"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "ارا‌ئه کننده‌های ریاضی زیادی ثبت شده‌اند، ولی هیچ کدام انتخاب نشده." msgstr "ارا‌ئه کننده‌های ریاضی زیادی ثبت شده‌اند، ولی هیچ کدام انتخاب نشده."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "نمایش‌دهنده‌ی ریاضی نامشخّص %r داده شده." msgstr "نمایش‌دهنده‌ی ریاضی نامشخّص %r داده شده."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد" msgstr "مدخل مسیر اضافی (html_extra_path) %r وجود ندارد"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخه‌ی خارجی قرار دارد" msgstr "مدخل مسیر اضافی (html_extra_path) %r درون شاخه‌ی خارجی قرار دارد"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد" msgstr "مدخل مسیر ثابت (html_static_path) %r وجود ندارد"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخه‌ی خارجی قرار دارد" msgstr "مدخل مسیر ثابت (html_static_path) %r درون شاخه‌ی خارجی قرار دارد"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "پرونده‌ی آرم %r وجود ندارد" msgstr "پرونده‌ی آرم %r وجود ندارد"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "پرونده‌ی آیکون مورد علاقه %r وجود ندارد" msgstr "پرونده‌ی آیکون مورد علاقه %r وجود ندارد"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "از نسخه‌ی ۳.۵.۰ به بعد افزودن پیوند همیشگی (html_add_permalinks) منسوخ شده. لطفاً از به جایش html_permalinks و html_permalinks_icon را به کار ببرید." msgstr "از نسخه‌ی ۳.۵.۰ به بعد افزودن پیوند همیشگی (html_add_permalinks) منسوخ شده. لطفاً از به جایش html_permalinks و html_permalinks_icon را به کار ببرید."
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "مستندات %s%s" msgstr "مستندات %s%s"
@ -1835,71 +1835,71 @@ msgstr "گزینه‌ی \":file:\" برای دستورالمعل جدول داد
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است." msgstr "اعلان C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. c:%s:: %s' است."
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "پارامترها" msgstr "پارامترها"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "بازگشت ها" msgstr "بازگشت ها"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "نوع برگشتی" msgstr "نوع برگشتی"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "%s (C %s)" msgstr "%s (C %s)"
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "عضو" msgstr "عضو"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "متغیّر" msgstr "متغیّر"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "تابع" msgstr "تابع"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "ماکرو" msgstr "ماکرو"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "ساختار" msgstr "ساختار"
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "اجتماع" msgstr "اجتماع"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "شمارش" msgstr "شمارش"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "شمارنده" msgstr "شمارنده"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "گونه" msgstr "گونه"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "مؤلّفه‌ی تابع" msgstr "مؤلّفه‌ی تابع"
@ -1928,36 +1928,36 @@ msgstr "نقل‌قول %s تکراری، مورد دیگر در %s قرار د
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "نقل [%s] قول ارجاع داده نشده." msgstr "نقل [%s] قول ارجاع داده نشده."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "اعلان ++C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. cpp:%s:: %s' است." msgstr "اعلان ++C تکراری، که در %s:%s هم تعریف شده.\nاعلان '.. cpp:%s:: %s' است."
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "پارامترهای قالب" msgstr "پارامترهای قالب"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "ایجاد" msgstr "ایجاد"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "کلاس" msgstr "کلاس"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "کانسپت" msgstr "کانسپت"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "مؤلّفه‌ی قالب" msgstr "مؤلّفه‌ی قالب"
@ -3471,11 +3471,11 @@ msgstr "قالب تصویر ناشناخته: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "نویسه‌ی منبع غیرقابل رمزگشایی، جایگزین با «؟» : %r" msgstr "نویسه‌ی منبع غیرقابل رمزگشایی، جایگزین با «؟» : %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "رد شدن و نادیده انگاشتن" msgstr "رد شدن و نادیده انگاشتن"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "شکست خورد" msgstr "شکست خورد"
@ -3573,7 +3573,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "به بست عنوانی برخورد که در قسمت، موضوع، جدول، اندرز یا نوارکناری نبود" msgstr "به بست عنوانی برخورد که در قسمت، موضوع، جدول، اندرز یا نوارکناری نبود"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "پانویس ها" msgstr "پانویس ها"
@ -3593,12 +3593,12 @@ msgstr "ابعاد واحد %sنامعتبر است و نادیده گرفته
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد" msgstr "نوع ناشناخته مدخل نمایه%s پیدا شد"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[تصویر%s]" msgstr "[تصویر%s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[تصویر]" msgstr "[تصویر]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n"
@ -73,7 +73,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -911,158 +911,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d.%m.%Y" msgstr "%d.%m.%Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Yleinen sisällysluettelo" msgstr "Yleinen sisällysluettelo"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "hakemisto" msgstr "hakemisto"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr ">" msgstr ">"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "<" msgstr "<"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1832,71 +1832,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3468,11 +3468,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -32,7 +32,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-29 11:52+0000\n" "PO-Revision-Date: 2021-05-29 11:52+0000\n"
"Last-Translator: Nicolas Friedli <nicolas.friedli@gmail.com>\n" "Last-Translator: Nicolas Friedli <nicolas.friedli@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"
@ -97,7 +97,7 @@ msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "chargement des traductions [%s]... " msgstr "chargement des traductions [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "fait" msgstr "fait"
@ -650,7 +650,7 @@ msgstr "Document en préparation"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "Entrées dupliquées de la table des matières trouvées : %s" msgstr "Entrées dupliquées de la table des matières trouvées : %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "Copie des images... " msgstr "Copie des images... "
@ -660,7 +660,7 @@ msgstr "Copie des images... "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "impossible de lire le fichier image %r: il sera copié à la place" msgstr "impossible de lire le fichier image %r: il sera copié à la place"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -785,7 +785,7 @@ msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vid
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3" msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "fichier CSS invalide : %r, le fichier sera ignoré" msgstr "fichier CSS invalide : %r, le fichier sera ignoré"
@ -903,7 +903,7 @@ msgstr "erreur lors l'écriture du fichier Makefile : %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Les fichiers texte se trouvent dans %(outdir)s." msgstr "Les fichiers texte se trouvent dans %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -935,158 +935,158 @@ msgid "Failed to read build info file: %r"
msgstr "Échec de lecture du fichier de configuration de construction : %r" msgstr "Échec de lecture du fichier de configuration de construction : %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Index général" msgstr "Index général"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "index" msgstr "index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "suivant" msgstr "suivant"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "précédent" msgstr "précédent"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "Génération des index" msgstr "Génération des index"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "écriture des pages additionnelles" msgstr "écriture des pages additionnelles"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "Copie des fichiers téléchargeables... " msgstr "Copie des fichiers téléchargeables... "
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "impossible de copier le fichier téléchargeable %r: %s" msgstr "impossible de copier le fichier téléchargeable %r: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "copie des fichiers statiques" msgstr "copie des fichiers statiques"
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "impossible de copier le fichier static %r" msgstr "impossible de copier le fichier static %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "Copie des fichiers complémentaires" msgstr "Copie des fichiers complémentaires"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "copie des fichiers supplémentaires impossible %r" msgstr "copie des fichiers supplémentaires impossible %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Échec d'écriture du fichier de configuration de construction : %r" msgstr "Échec d'écriture du fichier de configuration de construction : %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "L'index de recherche n'a pas pu être chargé, mais tous les documents ne seront pas construits: l'index sera incomplet." msgstr "L'index de recherche n'a pas pu être chargé, mais tous les documents ne seront pas construits: l'index sera incomplet."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "la page %s correspond à deux modèles dans html_sidebars: %r et %r" msgstr "la page %s correspond à deux modèles dans html_sidebars: %r et %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "une erreur Unicode est survenue lors du rendu de la page %s. Veuillez vous assurer que toutes les valeurs de configuration comportant des caractères non-ASCII sont des chaînes Unicode." msgstr "une erreur Unicode est survenue lors du rendu de la page %s. Veuillez vous assurer que toutes les valeurs de configuration comportant des caractères non-ASCII sont des chaînes Unicode."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r" msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "Export de l'inventaire des objets" msgstr "Export de l'inventaire des objets"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "Export de l'index de recherche dans %s" msgstr "Export de l'index de recherche dans %s"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "le fichier js_file : %r est invalide, il sera ignoré" msgstr "le fichier js_file : %r est invalide, il sera ignoré"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné." msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "math_renderer saisi %r inconnu." msgstr "math_renderer saisi %r inconnu."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "l'entrée html_extra_path %r n'existe pas" msgstr "l'entrée html_extra_path %r n'existe pas"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "l'entrée html_extra_path %r se trouve à l'intérieur de outdir" msgstr "l'entrée html_extra_path %r se trouve à l'intérieur de outdir"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "l'entrée html_static_path %r n'existe pas" msgstr "l'entrée html_static_path %r n'existe pas"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "l'entrée html_static_path %r se trouve à l'intérieur de outdir" msgstr "l'entrée html_static_path %r se trouve à l'intérieur de outdir"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "le fichier de logo %r n'existe pas" msgstr "le fichier de logo %r n'existe pas"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "le fichier de favicon %r n'existe pas " msgstr "le fichier de favicon %r n'existe pas "
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Documentation %s %s" msgstr "Documentation %s %s"
@ -1856,71 +1856,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Paramètres" msgstr "Paramètres"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Renvoie" msgstr "Renvoie"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Type renvoyé" msgstr "Type renvoyé"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membre" msgstr "membre"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variable" msgstr "variable"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "fonction" msgstr "fonction"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "union" msgstr "union"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "énumération" msgstr "énumération"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "énumérateur" msgstr "énumérateur"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "type" msgstr "type"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1949,36 +1949,36 @@ msgstr "citation dupliquée %s, une autre instance dans %s"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "La citation [%s] n'est pas référencée" msgstr "La citation [%s] n'est pas référencée"
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Paramètres du modèle" msgstr "Paramètres du modèle"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Déclenche" msgstr "Déclenche"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "classe" msgstr "classe"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "concept" msgstr "concept"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3492,11 +3492,11 @@ msgstr "Format d'image inconnu : %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "le caractère source est indécodable, il sera remplacé par \"?\" : %r" msgstr "le caractère source est indécodable, il sera remplacé par \"?\" : %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "ignoré" msgstr "ignoré"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "échoué" msgstr "échoué"
@ -3594,7 +3594,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "le titre de node rencontré n'est apparenté à aucun parmi section, topic, table, admonition ou sidebar" msgstr "le titre de node rencontré n'est apparenté à aucun parmi section, topic, table, admonition ou sidebar"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Notes de bas de page" msgstr "Notes de bas de page"
@ -3614,12 +3614,12 @@ msgstr "%s est invalide comme unité de dimension. Ignoré."
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "le type inconnu dentrée dindex %s a été trouvé" msgstr "le type inconnu dentrée dindex %s a été trouvé"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[image: %s]" msgstr "[image: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[image]" msgstr "[image]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2013-04-02 08:44+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -760,7 +760,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -910,158 +910,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1831,71 +1831,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3467,11 +3467,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n"
@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1839,12 +1839,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "פרמטרים" msgstr "פרמטרים"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
@ -1859,7 +1859,7 @@ msgstr ""
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
@ -1867,7 +1867,7 @@ msgstr ""
msgid "variable" msgid "variable"
msgstr "משתנה" msgstr "משתנה"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "פונקציה" msgstr "פונקציה"
@ -1880,23 +1880,23 @@ msgstr "מאקרו"
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "מחלקה" msgstr "מחלקה"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "הערות שוליים" msgstr "הערות שוליים"
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[תמונה]" msgstr "[תמונה]"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n"
@ -76,7 +76,7 @@ msgstr "'स्थापना' को जैसा कि अभी कोन
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "[%s] अनुवाद पढ़ा जा रहा है..." msgstr "[%s] अनुवाद पढ़ा जा रहा है..."
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "संपन्न" msgstr "संपन्न"
@ -629,7 +629,7 @@ msgstr "लेखपत्र बनाए जा रहे हैं"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..."
@ -639,7 +639,7 @@ msgstr "चित्रों की प्रतिलिपि बनाई
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -764,7 +764,7 @@ msgstr "ई-पब3 के लिए विन्यास मान \"epub_iden
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "अमान्य css_file: %r, उपेक्षित" msgstr "अमान्य css_file: %r, उपेक्षित"
@ -882,7 +882,7 @@ msgstr "मेकफाइल लिखने में त्रुटि: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "पाठ फाइल %(outdir)s में हैं." msgstr "पाठ फाइल %(outdir)s में हैं."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -914,158 +914,158 @@ msgid "Failed to read build info file: %r"
msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "सामान्य अनुक्रमाणिका" msgstr "सामान्य अनुक्रमाणिका"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "अनुक्रमणिका" msgstr "अनुक्रमणिका"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "आगामी" msgstr "आगामी"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "पूर्ववर्ती" msgstr "पूर्ववर्ती"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "अनुक्रमाणिका निर्मित की जा रही है" msgstr "अनुक्रमाणिका निर्मित की जा रही है"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं" msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| " msgstr "अतिरिक्त फाइलों की प्रतिलिपियां बनाये जा रहे है| "
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "खोज अनुक्रमाणिका नहीं चढाई जा सकी, लेकिन सभी लेखपत्र नहीं बनाए जाएंगे: अनुक्रमणिका अपूर्ण रहेगी." msgstr "खोज अनुक्रमाणिका नहीं चढाई जा सकी, लेकिन सभी लेखपत्र नहीं बनाए जाएंगे: अनुक्रमणिका अपूर्ण रहेगी."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "पृष्ठ %s html_sidebars में दो आकृतियों से मिलता है: %r %r" msgstr "पृष्ठ %s html_sidebars में दो आकृतियों से मिलता है: %r %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं." msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है" msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है" msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "अमान्य js_file: %r, उपेक्षित" msgstr "अमान्य js_file: %r, उपेक्षित"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "अज्ञात math_renderer %r दिया गया." msgstr "अज्ञात math_renderer %r दिया गया."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "html_extra_path का प्रविष्टि %r outdir में है| " msgstr "html_extra_path का प्रविष्टि %r outdir में है| "
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "html_static_path का प्रविष्टि %r outdir में है| " msgstr "html_static_path का प्रविष्टि %r outdir में है| "
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s दिग्दर्शिका" msgstr "%s %s दिग्दर्शिका"
@ -1835,71 +1835,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "मापदण्ड" msgstr "मापदण्ड"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "प्रदत्त " msgstr "प्रदत्त "
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "प्रदत्त प्रकार " msgstr "प्रदत्त प्रकार "
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "सदस्य" msgstr "सदस्य"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "चर पद" msgstr "चर पद"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "फंक्शन" msgstr "फंक्शन"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "मैक्रो" msgstr "मैक्रो"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "युग्म" msgstr "युग्म"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "गणक" msgstr "गणक"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "प्रगणक " msgstr "प्रगणक "
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "प्रकार" msgstr "प्रकार"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1928,36 +1928,36 @@ msgstr "प्रतिरूप उद्धरण %s, दूसरी प्
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं है" msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं है"
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "नमूना मानदण्ड " msgstr "नमूना मानदण्ड "
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "देता है " msgstr "देता है "
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "वर्ग" msgstr "वर्ग"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "अवधारणा " msgstr "अवधारणा "
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3471,11 +3471,11 @@ msgstr "अज्ञात चित्र प्रारूप: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r" msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "छोड़ा " msgstr "छोड़ा "
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "असफल" msgstr "असफल"
@ -3573,7 +3573,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है" msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "पाद टिप्पणियां" msgstr "पाद टिप्पणियां"
@ -3593,12 +3593,12 @@ msgstr "परिमाण मात्रक %s अमान्य है. उ
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[चित्र: %s]" msgstr "[चित्र: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[चित्र]" msgstr "[चित्र]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -760,7 +760,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -910,158 +910,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1831,71 +1831,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3467,11 +3467,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n"
@ -73,7 +73,7 @@ msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmije
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "učitavanje prijevoda [%s]... " msgstr "učitavanje prijevoda [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "napravljeno" msgstr "napravljeno"
@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -911,158 +911,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Opceniti abecedni indeks" msgstr "Opceniti abecedni indeks"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "abecedni indeks" msgstr "abecedni indeks"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "naprijed" msgstr "naprijed"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "nazad" msgstr "nazad"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s dokumentacija" msgstr "%s %s dokumentacija"
@ -1832,71 +1832,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametri" msgstr "Parametri"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Vraća" msgstr "Vraća"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Vraća tip" msgstr "Vraća tip"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "član" msgstr "član"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "varijabla" msgstr "varijabla"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcija" msgstr "funkcija"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tip" msgstr "tip"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parametri predloška" msgstr "Parametri predloška"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Baca (iznimke)" msgstr "Baca (iznimke)"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "razred" msgstr "razred"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "koncept" msgstr "koncept"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3468,11 +3468,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Fusnote" msgstr "Fusnote"
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[slika: %s]" msgstr "[slika: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[slika]" msgstr "[slika]"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n"
@ -78,7 +78,7 @@ msgstr "A „setup”, ahogy jelenleg a conf.py fájlban meg van határozva, nem
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "fordítások betöltése [%s]…" msgstr "fordítások betöltése [%s]…"
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "kész" msgstr "kész"
@ -631,7 +631,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -641,7 +641,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -766,7 +766,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -884,7 +884,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -916,158 +916,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Általános tárgymutató" msgstr "Általános tárgymutató"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "nyitóoldal" msgstr "nyitóoldal"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "következő" msgstr "következő"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "előző" msgstr "előző"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s dokumentáció" msgstr "%s %s dokumentáció"
@ -1837,71 +1837,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Paraméterek" msgstr "Paraméterek"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Visszatérési érték" msgstr "Visszatérési érték"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Visszatérés típusa" msgstr "Visszatérés típusa"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "tag" msgstr "tag"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "változó" msgstr "változó"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "függvény" msgstr "függvény"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makró" msgstr "makró"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enumeráció" msgstr "enumeráció"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerátor" msgstr "enumerátor"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "típus" msgstr "típus"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1930,36 +1930,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Sablonparaméterek" msgstr "Sablonparaméterek"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Dob" msgstr "Dob"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "osztály" msgstr "osztály"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3473,11 +3473,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3575,7 +3575,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Lábjegyzetek" msgstr "Lábjegyzetek"
@ -3595,12 +3595,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[image: %s]" msgstr "[image: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[image]" msgstr "[image]"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n"
@ -77,7 +77,7 @@ msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "memuat terjemahan [%s]... " msgstr "memuat terjemahan [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "selesai" msgstr "selesai"
@ -630,7 +630,7 @@ msgstr "menyiapkan dokumen"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "entri ToC ganda ditemukan: %s" msgstr "entri ToC ganda ditemukan: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "menyalin gambar... " msgstr "menyalin gambar... "
@ -640,7 +640,7 @@ msgstr "menyalin gambar... "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "tidak dapat membaca berkas gambar %r: menyalin gambar sebagai gantinya" msgstr "tidak dapat membaca berkas gambar %r: menyalin gambar sebagai gantinya"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -765,7 +765,7 @@ msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3"
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "css_file yang salah: %r, mengabaikan" msgstr "css_file yang salah: %r, mengabaikan"
@ -883,7 +883,7 @@ msgstr "kesalahan menulis berkas Makefile: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Berkas teks berada di %(outdir)s." msgstr "Berkas teks berada di %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -915,158 +915,158 @@ msgid "Failed to read build info file: %r"
msgstr "Gagal membaca berkas info build: %r" msgstr "Gagal membaca berkas info build: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b, %Y" msgstr "%d %b, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Indeks Umum" msgstr "Indeks Umum"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "index" msgstr "index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "berikut" msgstr "berikut"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "sebelum" msgstr "sebelum"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "menghasilkan indeks" msgstr "menghasilkan indeks"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "menulis halaman tambahan" msgstr "menulis halaman tambahan"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "menyalin berkas yang dapat diunduh... " msgstr "menyalin berkas yang dapat diunduh... "
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "tidak dapat menyalin berkas statik %r" msgstr "tidak dapat menyalin berkas statik %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "menyalin berkas tambahan" msgstr "menyalin berkas tambahan"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "tidak dapat menyalin berkas ekstra %r" msgstr "tidak dapat menyalin berkas ekstra %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Gagal menulis berkas info build: %r" msgstr "Gagal menulis berkas info build: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "indeks pencarian tidak dapat dimuat, tapi tidak semua dokumen akan dibangun: indeks akan jadi tidak lengkap." msgstr "indeks pencarian tidak dapat dimuat, tapi tidak semua dokumen akan dibangun: indeks akan jadi tidak lengkap."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "halaman %s sebanding dengan dua pola dalam html_sidebars: %r dan %r" msgstr "halaman %s sebanding dengan dua pola dalam html_sidebars: %r dan %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "kesalahan Unicode terjadi saat render halaman %s. Silakan pastikan semua nilai konfigurasi yang berisi konten non-ASCII adalah string Unicode." msgstr "kesalahan Unicode terjadi saat render halaman %s. Silakan pastikan semua nilai konfigurasi yang berisi konten non-ASCII adalah string Unicode."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Kesalahan terjadi saat render halaman %s.\nAlasan: %r" msgstr "Kesalahan terjadi saat render halaman %s.\nAlasan: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "menyisihkan persediaan obyek" msgstr "menyisihkan persediaan obyek"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "js_file yang salah: %r, mengabaikan" msgstr "js_file yang salah: %r, mengabaikan"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Banyak math_renderers teregistrasi. Namun tidak satu pun math_renderer yang dipilih." msgstr "Banyak math_renderers teregistrasi. Namun tidak satu pun math_renderer yang dipilih."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "math_renderer %r yang tidak diketahui diberikan." msgstr "math_renderer %r yang tidak diketahui diberikan."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "entri html_extra_path %r tidak ada" msgstr "entri html_extra_path %r tidak ada"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "entri html_static_path %r tidak ada" msgstr "entri html_static_path %r tidak ada"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "berkas logo %r tidak ada" msgstr "berkas logo %r tidak ada"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "berkas favicon %r tidak ada" msgstr "berkas favicon %r tidak ada"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Dokumentasi %s %s" msgstr "Dokumentasi %s %s"
@ -1836,71 +1836,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parameter" msgstr "Parameter"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Kembali" msgstr "Kembali"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Return type" msgstr "Return type"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "anggota" msgstr "anggota"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variabel" msgstr "variabel"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "fungsi" msgstr "fungsi"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "union" msgstr "union"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipe" msgstr "tipe"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1929,36 +1929,36 @@ msgstr "kutipan rangkap %s, contoh lain dalam %s"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "Kutipan [%s] tidak dirujuk." msgstr "Kutipan [%s] tidak dirujuk."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parameter Templat" msgstr "Parameter Templat"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Throws" msgstr "Throws"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "class" msgstr "class"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "konsep" msgstr "konsep"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3472,11 +3472,11 @@ msgstr "Format gambar tidak dikenal: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "dilewati" msgstr "dilewati"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "gagal" msgstr "gagal"
@ -3574,7 +3574,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau sisi bilah" msgstr "simpul judul tidak ditemui dalam bagian, topik, tabel, peringatan atau sisi bilah"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Catatan kaki" msgstr "Catatan kaki"
@ -3594,12 +3594,12 @@ msgstr "unit dimensi %s tidak valid. Diabaikan"
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "entri indeks tidak diketahui ditemukan tipe %s" msgstr "entri indeks tidak diketahui ditemukan tipe %s"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[gambar: %s]" msgstr "[gambar: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[gambar]" msgstr "[gambar]"

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n"
@ -77,7 +77,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "fatto" msgstr "fatto"
@ -630,7 +630,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -640,7 +640,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -765,7 +765,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -883,7 +883,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -915,158 +915,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b %Y" msgstr "%d %b %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Indice generale" msgstr "Indice generale"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indice" msgstr "indice"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "successivo" msgstr "successivo"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "precedente" msgstr "precedente"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s documentazione" msgstr "%s %s documentazione"
@ -1836,71 +1836,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametri" msgstr "Parametri"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Ritorna" msgstr "Ritorna"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Tipo di ritorno" msgstr "Tipo di ritorno"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membro" msgstr "membro"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variabile" msgstr "variabile"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funzione" msgstr "funzione"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumeratore" msgstr "enumeratore"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1929,36 +1929,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parametri del modello" msgstr "Parametri del modello"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Solleva" msgstr "Solleva"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "classe" msgstr "classe"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "concetto" msgstr "concetto"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3472,11 +3472,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3574,7 +3574,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Note a piè di pagina" msgstr "Note a piè di pagina"
@ -3594,12 +3594,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[immagine: %s]" msgstr "[immagine: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[immagine]" msgstr "[immagine]"

View File

@ -22,7 +22,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n"
@ -87,7 +87,7 @@ msgstr "conf.pyにある'setup'はPythonのcallableではありません。定
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "翻訳カタログをロードしています [%s]... " msgstr "翻訳カタログをロードしています [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "完了" msgstr "完了"
@ -640,7 +640,7 @@ msgstr "preparing documents"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "Tocエントリーが重複しています: %s" msgstr "Tocエントリーが重複しています: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "画像をコピー中... " msgstr "画像をコピー中... "
@ -650,7 +650,7 @@ msgstr "画像をコピー中... "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -775,7 +775,7 @@ msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です"
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "EPUB3出力では設定値 \"version\" が必要です" msgstr "EPUB3出力では設定値 \"version\" が必要です"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "無効な css_file %r は無視されました" msgstr "無効な css_file %r は無視されました"
@ -893,7 +893,7 @@ msgstr "Makefile の書き込みエラー: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "テキストファイルは%(outdir)sにあります。" msgstr "テキストファイルは%(outdir)sにあります。"
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -925,158 +925,158 @@ msgid "Failed to read build info file: %r"
msgstr "build info ファイルの読み込みに失敗しました: %r" msgstr "build info ファイルの読み込みに失敗しました: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%Y年%m月%d日" msgstr "%Y年%m月%d日"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "総合索引" msgstr "総合索引"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "索引" msgstr "索引"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "次へ" msgstr "次へ"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "前へ" msgstr "前へ"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "索引を生成中" msgstr "索引を生成中"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "追加のページを出力中" msgstr "追加のページを出力中"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "ダウンロードファイルをコピー中..." msgstr "ダウンロードファイルをコピー中..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "ダウンロードファイル %r をコピーできません: %s" msgstr "ダウンロードファイル %r をコピーできません: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "静的ファイル %r をコピーできません" msgstr "静的ファイル %r をコピーできません"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "extraファイルをコピー中" msgstr "extraファイルをコピー中"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "extraファイル %r をコピーできませんでした" msgstr "extraファイル %r をコピーできませんでした"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "build info ファイル %r の出力に失敗しました" msgstr "build info ファイル %r の出力に失敗しました"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "検索インデックスを読み込めず、ドキュメントビルドの一部が不完全です。" msgstr "検索インデックスを読み込めず、ドキュメントビルドの一部が不完全です。"
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "ページ %s がhtml_sidebarsの複数のパターンに一致しました: %r と %r" msgstr "ページ %s がhtml_sidebarsの複数のパターンに一致しました: %r と %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。" msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。"
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r "
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "オブジェクト インベントリを出力" msgstr "オブジェクト インベントリを出力"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "%s の検索インデックスを出力" msgstr "%s の検索インデックスを出力"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "無効な js_file %r は無視されました" msgstr "無効な js_file %r は無視されました"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。"
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "不明な math_renderer %r が指定されました。" msgstr "不明な math_renderer %r が指定されました。"
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "html_extra_path %r が見つかりません" msgstr "html_extra_path %r が見つかりません"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "html_extra_path %r がoutdir内に配置されます" msgstr "html_extra_path %r がoutdir内に配置されます"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "html_static_path %r が見つかりません" msgstr "html_static_path %r が見つかりません"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "html_static_path %r がoutdir内に配置されます" msgstr "html_static_path %r がoutdir内に配置されます"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "ロゴファイル %r がありません" msgstr "ロゴファイル %r がありません"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "favicon ファイル %r がありません" msgstr "favicon ファイル %r がありません"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s ドキュメント" msgstr "%s %s ドキュメント"
@ -1846,71 +1846,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "パラメータ" msgstr "パラメータ"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "戻り値" msgstr "戻り値"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "戻り値の型" msgstr "戻り値の型"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "のメンバ変数" msgstr "のメンバ変数"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "変数" msgstr "変数"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "の関数" msgstr "の関数"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "のマクロ" msgstr "のマクロ"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "union" msgstr "union"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "列挙型" msgstr "列挙型"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "のデータ型" msgstr "のデータ型"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1939,36 +1939,36 @@ msgstr "引用 %s はすでに %s で使われています"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "引用 [%s] は参照されていません。" msgstr "引用 [%s] は参照されていません。"
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "テンプレートパラメータ" msgstr "テンプレートパラメータ"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "例外" msgstr "例外"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "クラス" msgstr "クラス"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "コンセプト" msgstr "コンセプト"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3482,11 +3482,11 @@ msgstr "不明な画像フォーマット: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r" msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "スキップしました" msgstr "スキップしました"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "失敗しました" msgstr "失敗しました"
@ -3584,7 +3584,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。" msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "注記" msgstr "注記"
@ -3604,12 +3604,12 @@ msgstr "ディメンション単位 %s が無効です。無視されます。"
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "不明なインデックスエントリタイプ %s が見つかりました" msgstr "不明なインデックスエントリタイプ %s が見つかりました"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[画像: %s]" msgstr "[画像: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[画像]" msgstr "[画像]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-12 23:47+0000\n" "PO-Revision-Date: 2021-05-12 23:47+0000\n"
"Last-Translator: YT H <dev@theYT.net>\n" "Last-Translator: YT H <dev@theYT.net>\n"
"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n"
@ -74,7 +74,7 @@ msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "번역을 불러오는 중 [%s]… " msgstr "번역을 불러오는 중 [%s]… "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "완료" msgstr "완료"
@ -627,7 +627,7 @@ msgstr "문서 준비 중"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "중복된 목차 항목 발견: %s" msgstr "중복된 목차 항목 발견: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "이미지를 복사하는 중… " msgstr "이미지를 복사하는 중… "
@ -637,7 +637,7 @@ msgstr "이미지를 복사하는 중… "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다" msgstr "이미지 파일 %r을(를) 읽을 수 없으며, 대신 복사합니다"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr "설정값 \"epub_identifier\"는 EPUB3의 경우 비워 둘 수 없습
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "잘못된 css_file: %r, 무시합니다" msgstr "잘못된 css_file: %r, 무시합니다"
@ -880,7 +880,7 @@ msgstr "Makefile 쓰기 오류: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "텍스트 파일은 %(outdir)s에 있습니다." msgstr "텍스트 파일은 %(outdir)s에 있습니다."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "빌드 정보 파일을 읽을 수 없습니다: %r" msgstr "빌드 정보 파일을 읽을 수 없습니다: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%Y년 %m월 %d일" msgstr "%Y년 %m월 %d일"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "전체 색인" msgstr "전체 색인"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "색인" msgstr "색인"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "다음" msgstr "다음"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "이전" msgstr "이전"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "색인 생성 중" msgstr "색인 생성 중"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "추가 페이지 작성 중" msgstr "추가 페이지 작성 중"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "다운로드 가능한 파일을 복사하는 중… " msgstr "다운로드 가능한 파일을 복사하는 중… "
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s" msgstr "다운로드 가능한 파일 %r을(를) 복사할 수 없습니다: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "html_static_file에 있는 파일을 복사할 수 없습니다: %s: %r" msgstr "html_static_file에 있는 파일을 복사할 수 없습니다: %s: %r"
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "정적 파일을 복사하는 중" msgstr "정적 파일을 복사하는 중"
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "정적 파일을 복사할 수 없습니다: %r" msgstr "정적 파일을 복사할 수 없습니다: %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "추가 파일을 복사하는 중" msgstr "추가 파일을 복사하는 중"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "추가 파일을 복사할 수 없습니다: %r" msgstr "추가 파일을 복사할 수 없습니다: %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "빌드 정보 파일 쓰기 실패: %r" msgstr "빌드 정보 파일 쓰기 실패: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "검색 색인을 불러올 수 없지만 모든 문서가 작성되지는 않은 것은 아닙니다. 색인이 불완전합니다." msgstr "검색 색인을 불러올 수 없지만 모든 문서가 작성되지는 않은 것은 아닙니다. 색인이 불완전합니다."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "%s 페이지가 html_sidebars의 두 패턴(%r 및 %r)과 일치합니다" msgstr "%s 페이지가 html_sidebars의 두 패턴(%r 및 %r)과 일치합니다"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "%s 페이지를 렌더링 할 때 유니코드 오류가 발생했습니다. ASCII가 아닌 내용을 포함하는 모든 설정값이 유니코드 문자열인지 확인하십시오." msgstr "%s 페이지를 렌더링 할 때 유니코드 오류가 발생했습니다. ASCII가 아닌 내용을 포함하는 모든 설정값이 유니코드 문자열인지 확인하십시오."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r" msgstr "%s 페이지를 렌더링하는 중에 오류가 발생했습니다.\n원인: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "객체 인벤토리 덤프 중" msgstr "객체 인벤토리 덤프 중"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "%s에서 검색 인덱스 덤프 중" msgstr "%s에서 검색 인덱스 덤프 중"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "잘못된 js_file: %r, 무시합니다" msgstr "잘못된 js_file: %r, 무시합니다"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다." msgstr "여러 math_renderers가 등록되어 있습니다. 하지만 math_renderer가 선택되지 않았습니다."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다." msgstr "알 수 없는 math_renderer %r이(가) 지정되었습니다."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "html_extra_path 항목 %r이(가) 없습니다" msgstr "html_extra_path 항목 %r이(가) 없습니다"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다" msgstr "html_extra_path 항목 %r이(가) outdir 안에 있습니다"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "html_static_path 항목 %r이(가) 없습니다" msgstr "html_static_path 항목 %r이(가) 없습니다"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다" msgstr "html_static_path 항목 %r이(가) outdir 안에 있습니다"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "로고 파일 %r이(가) 존재하지 않습니다" msgstr "로고 파일 %r이(가) 존재하지 않습니다"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "Favicon 파일 %r이(가) 존재하지 않습니다" msgstr "Favicon 파일 %r이(가) 존재하지 않습니다"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "html_add_permalinks는 3.5.0 버전부터 더 이상 사용되지 않습니다. 대신 html_permalinks 및 html_permalinks_icon을 사용하십시오." msgstr "html_add_permalinks는 3.5.0 버전부터 더 이상 사용되지 않습니다. 대신 html_permalinks 및 html_permalinks_icon을 사용하십시오."
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s 문서" msgstr "%s %s 문서"
@ -1833,71 +1833,71 @@ msgstr "csv-table 지시문의 \":file:\" 옵션은 이제 절대 경로를 소
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다." msgstr "중복 C 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. c:%s:: %s' 입니다."
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "매개변수" msgstr "매개변수"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "반환값" msgstr "반환값"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "반환 형식" msgstr "반환 형식"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "%s (C %s)" msgstr "%s (C %s)"
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "멤버 변수" msgstr "멤버 변수"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "변수" msgstr "변수"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "함수" msgstr "함수"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "매크로" msgstr "매크로"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "구조체" msgstr "구조체"
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "공용체" msgstr "공용체"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "열거형" msgstr "열거형"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "열거자" msgstr "열거자"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "자료형" msgstr "자료형"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "함수 매개변수" msgstr "함수 매개변수"
@ -1926,36 +1926,36 @@ msgstr "중복 인용 %s, 다른 인스턴스는 %s에 있음"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "인용 [%s]이(가) 참조되지 않았습니다." msgstr "인용 [%s]이(가) 참조되지 않았습니다."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "중복 C++ 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. cpp:%s:: %s' 입니다." msgstr "중복 C++ 선언이며, %s:%s에 정의되었습니다.\n선언은 '.. cpp:%s:: %s' 입니다."
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "템플릿 매개변수" msgstr "템플릿 매개변수"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "예외" msgstr "예외"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "클래스" msgstr "클래스"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "콘셉트" msgstr "콘셉트"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "템플릿 매개변수" msgstr "템플릿 매개변수"
@ -3469,11 +3469,11 @@ msgstr "알 수 없는 이미지 형식: %s…"
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "건너뜀" msgstr "건너뜀"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "실패" msgstr "실패"
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨" msgstr "구역, 주제, 표, 조언, 사이드바 안에 있지 않은 제목 노드가 발견됨"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "각주" msgstr "각주"
@ -3591,12 +3591,12 @@ msgstr "치수 단위 %s이(가) 잘못되었습니다. 무시합니다."
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨" msgstr "알 수 없는 색인 항목 유형 %s이(가) 발견됨"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[그림: %s]" msgstr "[그림: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[그림]" msgstr "[그림]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n"
@ -73,7 +73,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -911,158 +911,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%Y-%m-%d" msgstr "%Y-%m-%d"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Bendras indeksas" msgstr "Bendras indeksas"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indeksas" msgstr "indeksas"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "kitas" msgstr "kitas"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "praeitas" msgstr "praeitas"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1832,71 +1832,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametrai" msgstr "Parametrai"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Grąžinamos reikšmės" msgstr "Grąžinamos reikšmės"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Grąžinamos reikšmės tipas" msgstr "Grąžinamos reikšmės tipas"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "narys" msgstr "narys"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "kintamasis" msgstr "kintamasis"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcija" msgstr "funkcija"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makrokomanda" msgstr "makrokomanda"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipas" msgstr "tipas"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Išmeta" msgstr "Išmeta"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasė" msgstr "klasė"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3468,11 +3468,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Išnašos" msgstr "Išnašos"
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[paveiksliukas]" msgstr "[paveiksliukas]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-06 00:16+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -760,7 +760,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -910,158 +910,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d.%m.%Y" msgstr "%d.%m.%Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Vispārējs indekss" msgstr "Vispārējs indekss"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indekss" msgstr "indekss"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "nākošais" msgstr "nākošais"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "iepriekšējs" msgstr "iepriekšējs"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1831,71 +1831,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametri" msgstr "Parametri"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Atgriež" msgstr "Atgriež"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Atgriežamais tips" msgstr "Atgriežamais tips"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "loceklis" msgstr "loceklis"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "mainīgais" msgstr "mainīgais"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcija" msgstr "funkcija"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makross" msgstr "makross"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tips" msgstr "tips"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Izmet" msgstr "Izmet"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klase" msgstr "klase"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3467,11 +3467,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Vēres" msgstr "Vēres"
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[attēls: %s]" msgstr "[attēls: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[attēls]" msgstr "[attēls]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n"
@ -73,7 +73,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -879,7 +879,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -911,158 +911,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b, %Y" msgstr "%d %b, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Главна содржина" msgstr "Главна содржина"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "содржина" msgstr "содржина"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "следна" msgstr "следна"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "претходна" msgstr "претходна"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s документација" msgstr "%s %s документација"
@ -1832,71 +1832,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Параметри" msgstr "Параметри"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Враќа" msgstr "Враќа"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Повратен тип" msgstr "Повратен тип"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "член" msgstr "член"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "променлива" msgstr "променлива"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "функција" msgstr "функција"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "макро" msgstr "макро"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "тип" msgstr "тип"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Фрла" msgstr "Фрла"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "класа" msgstr "класа"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3468,11 +3468,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -760,7 +760,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -910,158 +910,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Hovedindex" msgstr "Hovedindex"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "index" msgstr "index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "neste" msgstr "neste"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "forrige" msgstr "forrige"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1831,71 +1831,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametere" msgstr "Parametere"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Returnere" msgstr "Returnere"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Retur type" msgstr "Retur type"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "medlem" msgstr "medlem"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variabel" msgstr "variabel"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funksjon" msgstr "funksjon"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "type" msgstr "type"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Kaster" msgstr "Kaster"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasse" msgstr "klasse"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3467,11 +3467,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Fotnoter" msgstr "Fotnoter"
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[bilde]" msgstr "[bilde]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n"
@ -74,7 +74,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -627,7 +627,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -637,7 +637,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -880,7 +880,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "सामान्य अनुसुची" msgstr "सामान्य अनुसुची"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "अनुसुची" msgstr "अनुसुची"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "पछिल्लो" msgstr "पछिल्लो"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "अघिल्लो" msgstr "अघिल्लो"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1833,71 +1833,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parameters" msgstr "Parameters"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Returns" msgstr "Returns"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Return type" msgstr "Return type"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "सदस्य" msgstr "सदस्य"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "चल" msgstr "चल"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "फन्क्सन" msgstr "फन्क्सन"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "बृहत" msgstr "बृहत"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "किसिम" msgstr "किसिम"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Throws" msgstr "Throws"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "कक्षा" msgstr "कक्षा"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3469,11 +3469,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "फूट्नोट्स" msgstr "फूट्नोट्स"
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[चित्र]" msgstr "[चित्र]"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n"
@ -78,7 +78,7 @@ msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callabl
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "laden van vertalingen [%s]... " msgstr "laden van vertalingen [%s]... "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "klaar" msgstr "klaar"
@ -631,7 +631,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -641,7 +641,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -766,7 +766,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -884,7 +884,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -916,158 +916,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Algemene index" msgstr "Algemene index"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "index" msgstr "index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "volgende" msgstr "volgende"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "vorige" msgstr "vorige"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s documentatie" msgstr "%s %s documentatie"
@ -1837,71 +1837,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parameters" msgstr "Parameters"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Returns" msgstr "Returns"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Return type" msgstr "Return type"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "member" msgstr "member"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variabele" msgstr "variabele"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "functie" msgstr "functie"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "type" msgstr "type"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1930,36 +1930,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Sjabloonparameters" msgstr "Sjabloonparameters"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Werpt" msgstr "Werpt"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasse" msgstr "klasse"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "concept" msgstr "concept"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3473,11 +3473,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3575,7 +3575,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Voetnoten" msgstr "Voetnoten"
@ -3595,12 +3595,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[afbeelding: %s]" msgstr "[afbeelding: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[afbeelding]" msgstr "[afbeelding]"

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n"
@ -76,7 +76,7 @@ msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego de
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "ładowanie tłumaczeń [%s]..." msgstr "ładowanie tłumaczeń [%s]..."
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "gotowe" msgstr "gotowe"
@ -629,7 +629,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "kopiowanie obrazków..." msgstr "kopiowanie obrazków..."
@ -639,7 +639,7 @@ msgstr "kopiowanie obrazków..."
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -764,7 +764,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "nieprawidłowy css_file: %r, zignorowano" msgstr "nieprawidłowy css_file: %r, zignorowano"
@ -882,7 +882,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Pliki tekstowe są w %(outdir)s." msgstr "Pliki tekstowe są w %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -914,158 +914,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b %Y" msgstr "%d %b %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Indeks ogólny" msgstr "Indeks ogólny"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "indeks" msgstr "indeks"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "dalej" msgstr "dalej"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "wstecz" msgstr "wstecz"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "kopiowanie plików do pobrania..." msgstr "kopiowanie plików do pobrania..."
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "nie można skopiować pliku statycznego %r" msgstr "nie można skopiować pliku statycznego %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "nie można skopiować dodatkowego pliku %r" msgstr "nie można skopiować dodatkowego pliku %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r" msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "nieprawidłowy js_file: %r, zignorowano" msgstr "nieprawidłowy js_file: %r, zignorowano"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "Podano nieznany math_renderer %r." msgstr "Podano nieznany math_renderer %r."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "plik favicon %r nie istnieje" msgstr "plik favicon %r nie istnieje"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s - dokumentacja" msgstr "%s %s - dokumentacja"
@ -1835,71 +1835,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametry" msgstr "Parametry"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Zwraca" msgstr "Zwraca"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Typ zwracany" msgstr "Typ zwracany"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "pole" msgstr "pole"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "zmienna" msgstr "zmienna"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcja" msgstr "funkcja"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "unia" msgstr "unia"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "typ" msgstr "typ"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1928,36 +1928,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "Cytat [%s] nie ma odniesienia." msgstr "Cytat [%s] nie ma odniesienia."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parametry szablonu" msgstr "Parametry szablonu"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Wyrzuca" msgstr "Wyrzuca"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasa" msgstr "klasa"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "koncepcja" msgstr "koncepcja"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3471,11 +3471,11 @@ msgstr "Nieznany format obrazka: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3573,7 +3573,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Przypisy" msgstr "Przypisy"
@ -3593,12 +3593,12 @@ msgstr "%s"
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[obraz: %s]" msgstr "[obraz: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[obraz]" msgstr "[obraz]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -760,7 +760,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -910,158 +910,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1831,71 +1831,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3467,11 +3467,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-06 00:16+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n"
@ -78,7 +78,7 @@ msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocá
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "carregando traduções [%s]… " msgstr "carregando traduções [%s]… "
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "feito" msgstr "feito"
@ -631,7 +631,7 @@ msgstr "preparando documentos"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "entrada de tabela de conteúdos duplicada encontrada: %s" msgstr "entrada de tabela de conteúdos duplicada encontrada: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "copiando imagens… " msgstr "copiando imagens… "
@ -641,7 +641,7 @@ msgstr "copiando imagens… "
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "não foi possível ler o arquivo de imagem %r: copiando-o" msgstr "não foi possível ler o arquivo de imagem %r: copiando-o"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -766,7 +766,7 @@ msgstr "o valor da configuração “epub_identifier” não deve estar vazio pa
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "o valor da configuração “version” não deve estar vazio para EPUB3" msgstr "o valor da configuração “version” não deve estar vazio para EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "css_file inválido: %r, ignorado" msgstr "css_file inválido: %r, ignorado"
@ -884,7 +884,7 @@ msgstr "erro ao escrever o arquivo Makefile: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Os arquivos texto estão em %(outdir)s." msgstr "Os arquivos texto estão em %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -916,158 +916,158 @@ msgid "Failed to read build info file: %r"
msgstr "Falha ao ler o arquivo de informações de compilação: %r" msgstr "Falha ao ler o arquivo de informações de compilação: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b %Y" msgstr "%d %b %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Índice Geral" msgstr "Índice Geral"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "índice" msgstr "índice"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "próximo" msgstr "próximo"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "anterior" msgstr "anterior"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "gerando índices" msgstr "gerando índices"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "escrevendo páginas adicionais" msgstr "escrevendo páginas adicionais"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "copiando arquivos baixáveis… " msgstr "copiando arquivos baixáveis… "
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "não foi possível copiar o arquivo baixável %r: %s" msgstr "não foi possível copiar o arquivo baixável %r: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "Falha ao copiar um arquivo em html_static_file: %s: %r" msgstr "Falha ao copiar um arquivo em html_static_file: %s: %r"
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "copiando arquivos estáticos" msgstr "copiando arquivos estáticos"
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "não foi possível copiar o arquivo estático %r" msgstr "não foi possível copiar o arquivo estático %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "copiando arquivos extras" msgstr "copiando arquivos extras"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "não foi possível copiar o arquivo extra %r" msgstr "não foi possível copiar o arquivo extra %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Falha ao escrever o arquivo de informações de compilação: %r" msgstr "Falha ao escrever o arquivo de informações de compilação: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "não foi possível carregar o índice de pesquisa, mas nem todos os documentos serão compilados: o índice ficará incompleto." msgstr "não foi possível carregar o índice de pesquisa, mas nem todos os documentos serão compilados: o índice ficará incompleto."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "a página %s corresponde a dois padrões em html_sidebars: %r e %r" msgstr "a página %s corresponde a dois padrões em html_sidebars: %r e %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "ocorreu um erro Unicode ao renderizar a página %s. Verifique se todos os valores de configuração que contêm conteúdo não ASCII são strings Unicode." msgstr "ocorreu um erro Unicode ao renderizar a página %s. Verifique se todos os valores de configuração que contêm conteúdo não ASCII são strings Unicode."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Ocorreu um erro ao renderizar a página %s.\nMotivo: %r" msgstr "Ocorreu um erro ao renderizar a página %s.\nMotivo: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "despejando inventário de objetos" msgstr "despejando inventário de objetos"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "despejando índice de pesquisa em %s" msgstr "despejando índice de pesquisa em %s"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "js_file inválido: %r, ignorado" msgstr "js_file inválido: %r, ignorado"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Muitos math_renders estão registrados, mas nenhum math_renderer está selecionado." msgstr "Muitos math_renders estão registrados, mas nenhum math_renderer está selecionado."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "math_renderer desconhecido %r é fornecido." msgstr "math_renderer desconhecido %r é fornecido."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "a entrada de html_extra_path %r não existe" msgstr "a entrada de html_extra_path %r não existe"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "entrada de html_extra_path %r está posicionada dentro de outdir" msgstr "entrada de html_extra_path %r está posicionada dentro de outdir"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "a entrada de html_static_path %r não existe" msgstr "a entrada de html_static_path %r não existe"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "entrada de html_static_path %r está posicionada dento de outdir" msgstr "entrada de html_static_path %r está posicionada dento de outdir"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "o arquivo logo %r não existe" msgstr "o arquivo logo %r não existe"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "o arquivo favicon %r não existe" msgstr "o arquivo favicon %r não existe"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "html_add_permalinks foi descontinuado desde v3.5.0. Use html_permalinks e html_permalinks_icon." msgstr "html_add_permalinks foi descontinuado desde v3.5.0. Use html_permalinks e html_permalinks_icon."
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "documentação %s %s" msgstr "documentação %s %s"
@ -1837,71 +1837,71 @@ msgstr "A opção \":file:\" para a diretiva csv-table agora reconhece um caminh
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'." msgstr "Declaração C duplicada, também definida em %s:%s.\nA declaração é '.. c:%s:: %s'."
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parâmetros" msgstr "Parâmetros"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Retorna" msgstr "Retorna"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Tipo de retorno" msgstr "Tipo de retorno"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "%s (C %s)" msgstr "%s (C %s)"
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membro" msgstr "membro"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variável" msgstr "variável"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "função" msgstr "função"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "struct" msgstr "struct"
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "união" msgstr "união"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerador" msgstr "enumerador"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "parâmetro de função" msgstr "parâmetro de função"
@ -1930,36 +1930,36 @@ msgstr "citação duplicada %s, outra instância em %s"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "citação [%s] não é referenciada." msgstr "citação [%s] não é referenciada."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "Declaração C++ duplicada, também definida em %s:%s.\nA declaração é '.. cpp:%s:: %s'." msgstr "Declaração C++ duplicada, também definida em %s:%s.\nA declaração é '.. cpp:%s:: %s'."
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parâmetros do Modelo" msgstr "Parâmetros do Modelo"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Lança" msgstr "Lança"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "classe" msgstr "classe"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "conceito" msgstr "conceito"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "parâmetro de modelo" msgstr "parâmetro de modelo"
@ -3473,11 +3473,11 @@ msgstr "Formato de imagem desconhecido: %s…"
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "caracteres de origem não codificáveis, substituindo por “?”: %r" msgstr "caracteres de origem não codificáveis, substituindo por “?”: %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "ignorado" msgstr "ignorado"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "falhou" msgstr "falhou"
@ -3575,7 +3575,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "nó de título encontrado não na section, topic, table, admonition ou sidebar" msgstr "nó de título encontrado não na section, topic, table, admonition ou sidebar"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Notas de rodapé" msgstr "Notas de rodapé"
@ -3595,12 +3595,12 @@ msgstr "a unidade de dimensão %s é inválida. Ignorada."
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "tipo desconhecido de entrada de índice %s encontrado" msgstr "tipo desconhecido de entrada de índice %s encontrado"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[imagem: %s]" msgstr "[imagem: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[imagem]" msgstr "[imagem]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n"
@ -74,7 +74,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -627,7 +627,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -637,7 +637,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -880,7 +880,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b, %Y" msgstr "%d %b, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Índice Geral" msgstr "Índice Geral"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "índice" msgstr "índice"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "próximo" msgstr "próximo"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "anterior" msgstr "anterior"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Documentação %s %s" msgstr "Documentação %s %s"
@ -1833,71 +1833,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parâmetros" msgstr "Parâmetros"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Retorno" msgstr "Retorno"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Tipo de retorno" msgstr "Tipo de retorno"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membro" msgstr "membro"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variável" msgstr "variável"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "função" msgstr "função"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tipo" msgstr "tipo"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Gera" msgstr "Gera"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "classe" msgstr "classe"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3469,11 +3469,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Notas de rodapé" msgstr "Notas de rodapé"
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[imagem: %s]" msgstr "[imagem: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[imagem]" msgstr "[imagem]"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n"
@ -74,7 +74,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -627,7 +627,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -637,7 +637,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -762,7 +762,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -880,7 +880,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -912,158 +912,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Index General" msgstr "Index General"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "index" msgstr "index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "următor" msgstr "următor"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "precedent" msgstr "precedent"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "%s %s documentație" msgstr "%s %s documentație"
@ -1833,71 +1833,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametrii" msgstr "Parametrii"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Întoarce" msgstr "Întoarce"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Tipul întors" msgstr "Tipul întors"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "membru" msgstr "membru"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "variabilă" msgstr "variabilă"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funcție" msgstr "funcție"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "macro" msgstr "macro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerator" msgstr "enumerator"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tip" msgstr "tip"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1926,36 +1926,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Generează" msgstr "Generează"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "clasă" msgstr "clasă"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3469,11 +3469,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3571,7 +3571,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Note de subsol" msgstr "Note de subsol"
@ -3591,12 +3591,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[figura: %s]" msgstr "[figura: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[figură]" msgstr "[figură]"

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n"
@ -78,7 +78,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "готово" msgstr "готово"
@ -631,7 +631,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -641,7 +641,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "Не получается считать файл изображение %r: скопируйте его" msgstr "Не получается считать файл изображение %r: скопируйте его"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -766,7 +766,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -884,7 +884,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -916,158 +916,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%b %d, %Y" msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Алфавитный указатель" msgstr "Алфавитный указатель"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "указатель" msgstr "указатель"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "вперёд" msgstr "вперёд"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "назад" msgstr "назад"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "документация %s %s" msgstr "документация %s %s"
@ -1837,71 +1837,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Параметры" msgstr "Параметры"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Результат" msgstr "Результат"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Тип результата" msgstr "Тип результата"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "поле" msgstr "поле"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "переменная" msgstr "переменная"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "функция" msgstr "функция"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "макрос" msgstr "макрос"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "перечисляемый тип" msgstr "перечисляемый тип"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "перечислитель" msgstr "перечислитель"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "тип" msgstr "тип"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1930,36 +1930,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Параметры шаблона" msgstr "Параметры шаблона"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Бросает исключение" msgstr "Бросает исключение"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "класс" msgstr "класс"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "концепт" msgstr "концепт"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3473,11 +3473,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3575,7 +3575,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Сноски" msgstr "Сноски"
@ -3595,12 +3595,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[рисунок: %s]" msgstr "[рисунок: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[рисунок]" msgstr "[рисунок]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n"
@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1839,12 +1839,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "පරාමිතීන්" msgstr "පරාමිතීන්"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
@ -1859,7 +1859,7 @@ msgstr ""
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "සාමාජික" msgstr "සාමාජික"
@ -1867,7 +1867,7 @@ msgstr "සාමාජික"
msgid "variable" msgid "variable"
msgstr "විචල්‍යය" msgstr "විචල්‍යය"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "ක්‍රියාව" msgstr "ක්‍රියාව"
@ -1880,23 +1880,23 @@ msgstr "මැක්‍රෝ"
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "වර්ගය" msgstr "වර්ගය"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1925,36 +1925,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3590,12 +3590,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[image: %s]" msgstr "[image: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[image]" msgstr "[image]"

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n"
@ -75,7 +75,7 @@ msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho def
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "načítanie prekladov [%s]…" msgstr "načítanie prekladov [%s]…"
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "hotovo" msgstr "hotovo"
@ -628,7 +628,7 @@ msgstr "príprava dokumentov"
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "nájdená duplicitná položka Obsahu: %s" msgstr "nájdená duplicitná položka Obsahu: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "kopírovanie obrázkov…" msgstr "kopírovanie obrázkov…"
@ -638,7 +638,7 @@ msgstr "kopírovanie obrázkov…"
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "nemožno čítať súbor obrázku %r: jeho kopírovanie namiesto toho" msgstr "nemožno čítať súbor obrázku %r: jeho kopírovanie namiesto toho"
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -763,7 +763,7 @@ msgstr "konfiguračná hodnota „epub_identifier” nesmie byť prázdna pri EP
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3" msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "neplatný css_file: %r, ignorovaný" msgstr "neplatný css_file: %r, ignorovaný"
@ -881,7 +881,7 @@ msgstr "chyba zápisu súboru Makefile: %s"
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "Textové súbory sú v %(outdir)s." msgstr "Textové súbory sú v %(outdir)s."
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -913,158 +913,158 @@ msgid "Failed to read build info file: %r"
msgstr "Čítanie súboru zostavenia info zlyhalo: %r" msgstr "Čítanie súboru zostavenia info zlyhalo: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d. %b %Y" msgstr "%d. %b %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Všeobecný index" msgstr "Všeobecný index"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "index" msgstr "index"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "ďalší" msgstr "ďalší"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "predošlý" msgstr "predošlý"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "generovanie indexov" msgstr "generovanie indexov"
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "zapisovanie dodatočných stránok" msgstr "zapisovanie dodatočných stránok"
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "kopírovanie súborov na stiahnutie…" msgstr "kopírovanie súborov na stiahnutie…"
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "nemožno kopírovať súbor na stiahnutie %r: %s" msgstr "nemožno kopírovať súbor na stiahnutie %r: %s"
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r" msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r"
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "kopírovanie statických súborov" msgstr "kopírovanie statických súborov"
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "nemožno kopírovať statický súbor %r" msgstr "nemožno kopírovať statický súbor %r"
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "kopírovanie extra súborov" msgstr "kopírovanie extra súborov"
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "nemožno kopírovať extra súbor %r" msgstr "nemožno kopírovať extra súbor %r"
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "Zápis súboru zostavenia info zlyhal: %r" msgstr "Zápis súboru zostavenia info zlyhal: %r"
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný." msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný."
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "stránka %s vyhovuje dvom vzorom v html_sidebars: %r a %r" msgstr "stránka %s vyhovuje dvom vzorom v html_sidebars: %r a %r"
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "pri spracovaní stránky %s nastala chyba Unicode. Prosím, zaistite, že všetky konfiguračné hodnoty, ktoré obsahujú nieASCII hodnotu sú reťazce Unicode." msgstr "pri spracovaní stránky %s nastala chyba Unicode. Prosím, zaistite, že všetky konfiguračné hodnoty, ktoré obsahujú nieASCII hodnotu sú reťazce Unicode."
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r" msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r"
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "generovanie inventára objektov…" msgstr "generovanie inventára objektov…"
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "generovanie indexu hľadania v %s" msgstr "generovanie indexu hľadania v %s"
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "neplatné js_file: %r, ignorované" msgstr "neplatné js_file: %r, ignorované"
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený." msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený."
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "Zdaný neznámy math_renderer %r." msgstr "Zdaný neznámy math_renderer %r."
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "položka „html_extra_path entry” %r neexistuje" msgstr "položka „html_extra_path entry” %r neexistuje"
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "položka html_extra_path %r je umiestnené vo vnútri výstupného adresára" msgstr "položka html_extra_path %r je umiestnené vo vnútri výstupného adresára"
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "položka „html_static_path” %r neexistuje" msgstr "položka „html_static_path” %r neexistuje"
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "položka html_static_path %r je umiestnené vo vnútri výstupného adresára" msgstr "položka html_static_path %r je umiestnené vo vnútri výstupného adresára"
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "súbor loga %r neexistuje" msgstr "súbor loga %r neexistuje"
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "súbor favicon %r neexistuje" msgstr "súbor favicon %r neexistuje"
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "html_add_permalinks bolo označené za zastarané od v3.5.0. Prosím, použite namiesto toho html_permalinks a html_permalinks_icon." msgstr "html_add_permalinks bolo označené za zastarané od v3.5.0. Prosím, použite namiesto toho html_permalinks a html_permalinks_icon."
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "Dokumentácia %s %s" msgstr "Dokumentácia %s %s"
@ -1834,71 +1834,71 @@ msgstr "voľba \":file:\" direktívy csv-table teraz rozpoznáva absolútnu cest
msgid "%s %s" msgid "%s %s"
msgstr "%s %s" msgstr "%s %s"
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'." msgstr "Duplicitná deklarácia C, definovaná aj v %s:%s.\nDeklarácia je '.. c:%s:: %s'."
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametre" msgstr "Parametre"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Vracia" msgstr "Vracia"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Návratový typ" msgstr "Návratový typ"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "%s (C %s)" msgstr "%s (C %s)"
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "člen" msgstr "člen"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "premenná" msgstr "premenná"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcia" msgstr "funkcia"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "makro" msgstr "makro"
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "enum" msgstr "enum"
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "enumerátor" msgstr "enumerátor"
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "typ" msgstr "typ"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "parameter funkcie" msgstr "parameter funkcie"
@ -1927,36 +1927,36 @@ msgstr "duplicitná citácia %s, ďalší výskyt v %s"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "Citácia [%s] nie je odkazovaná." msgstr "Citácia [%s] nie je odkazovaná."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "Duplicitná deklarácia C++, definovaná aj v %s:%s.\nDeklarácia je '.. cpp:%s:: %s'." msgstr "Duplicitná deklarácia C++, definovaná aj v %s:%s.\nDeklarácia je '.. cpp:%s:: %s'."
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parametre šablóny" msgstr "Parametre šablóny"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "Vyvoláva" msgstr "Vyvoláva"
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "trieda" msgstr "trieda"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "koncept" msgstr "koncept"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "parameter šablóny" msgstr "parameter šablóny"
@ -3470,11 +3470,11 @@ msgstr "Neznámy formát obrázku: %s..."
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "nedekódovateľné zdrojové znaky, nahradené „?”: %r" msgstr "nedekódovateľné zdrojové znaky, nahradené „?”: %r"
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "preskočené" msgstr "preskočené"
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "zlyhalo" msgstr "zlyhalo"
@ -3572,7 +3572,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Poznámky pod čiarou" msgstr "Poznámky pod čiarou"
@ -3592,12 +3592,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[obrázok: %s]" msgstr "[obrázok: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[obrázok]" msgstr "[obrázok]"

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: 2021-05-11 13:54+0000\n" "PO-Revision-Date: 2021-05-11 13:54+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n"
@ -72,7 +72,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -760,7 +760,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -878,7 +878,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -910,158 +910,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "%d %b, %Y" msgstr "%d %b, %Y"
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "Splošni abecedni seznam" msgstr "Splošni abecedni seznam"
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "abecedni seznam" msgstr "abecedni seznam"
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "naprej" msgstr "naprej"
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "nazaj" msgstr "nazaj"
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the " "search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete." "index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all " "a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings." "config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1831,71 +1831,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametri" msgstr "Parametri"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Vrne" msgstr "Vrne"
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "Vrne tip" msgstr "Vrne tip"
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "član" msgstr "član"
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funkcija" msgstr "funkcija"
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "tip" msgstr "tip"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1924,36 +1924,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "razred" msgstr "razred"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3467,11 +3467,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3569,7 +3569,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Opombe" msgstr "Opombe"
@ -3589,12 +3589,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[slika]" msgstr "[slika]"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx 4.1.0\n" "Project-Id-Version: Sphinx 4.1.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-13 00:08+0000\n" "POT-Creation-Date: 2021-07-04 00:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -71,7 +71,7 @@ msgstr ""
msgid "loading translations [%s]... " msgid "loading translations [%s]... "
msgstr "" msgstr ""
#: sphinx/application.py:296 sphinx/util/__init__.py:522 #: sphinx/application.py:296 sphinx/util/__init__.py:539
msgid "done" msgid "done"
msgstr "" msgstr ""
@ -625,7 +625,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s" msgid "duplicated ToC entry found: %s"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:719 #: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:716
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176 #: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... " msgid "copying images... "
msgstr "" msgstr ""
@ -635,7 +635,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead" msgid "cannot read image file %r: copying it instead"
msgstr "" msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:727 #: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:724
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186 #: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format #, python-format
msgid "cannot copy image file %r: %s" msgid "cannot copy image file %r: %s"
@ -766,7 +766,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3" msgid "conf value \"version\" should not be empty for EPUB3"
msgstr "" msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1110 #: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1107
#, python-format #, python-format
msgid "invalid css_file: %r, ignored" msgid "invalid css_file: %r, ignored"
msgstr "" msgstr ""
@ -884,7 +884,7 @@ msgstr ""
msgid "The text files are in %(outdir)s." msgid "The text files are in %(outdir)s."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1063 sphinx/builders/text.py:77 #: sphinx/builders/html/__init__.py:1060 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91 #: sphinx/builders/xml.py:91
#, python-format #, python-format
msgid "error writing file %s: %s" msgid "error writing file %s: %s"
@ -916,158 +916,158 @@ msgid "Failed to read build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 sphinx/themes/basic/defindex.html:30 #: sphinx/builders/html/__init__.py:475 sphinx/themes/basic/defindex.html:30
msgid "General Index" msgid "General Index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:478 #: sphinx/builders/html/__init__.py:475
msgid "index" msgid "index"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:540 #: sphinx/builders/html/__init__.py:537
msgid "next" msgid "next"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:549 #: sphinx/builders/html/__init__.py:546
msgid "previous" msgid "previous"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:643 #: sphinx/builders/html/__init__.py:640
msgid "generating indices" msgid "generating indices"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:658 #: sphinx/builders/html/__init__.py:655
msgid "writing additional pages" msgid "writing additional pages"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:737 #: sphinx/builders/html/__init__.py:734
msgid "copying downloadable files... " msgid "copying downloadable files... "
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:745 #: sphinx/builders/html/__init__.py:742
#, python-format #, python-format
msgid "cannot copy downloadable file %r: %s" msgid "cannot copy downloadable file %r: %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:777 sphinx/builders/html/__init__.py:789 #: sphinx/builders/html/__init__.py:774 sphinx/builders/html/__init__.py:786
#, python-format #, python-format
msgid "Failed to copy a file in html_static_file: %s: %r" msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:810 #: sphinx/builders/html/__init__.py:807
msgid "copying static files" msgid "copying static files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:826 #: sphinx/builders/html/__init__.py:823
#, python-format #, python-format
msgid "cannot copy static file %r" msgid "cannot copy static file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:831 #: sphinx/builders/html/__init__.py:828
msgid "copying extra files" msgid "copying extra files"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:837 #: sphinx/builders/html/__init__.py:834
#, python-format #, python-format
msgid "cannot copy extra file %r" msgid "cannot copy extra file %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:844 #: sphinx/builders/html/__init__.py:841
#, python-format #, python-format
msgid "Failed to write build info file: %r" msgid "Failed to write build info file: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:892 #: sphinx/builders/html/__init__.py:889
msgid "" msgid ""
"search index couldn't be loaded, but not all documents will be built: the" "search index couldn't be loaded, but not all documents will be built: the"
" index will be incomplete." " index will be incomplete."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:953 #: sphinx/builders/html/__init__.py:950
#, python-format #, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r" msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1046 #: sphinx/builders/html/__init__.py:1043
#, python-format #, python-format
msgid "" msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all" "a Unicode error occurred when rendering the page %s. Please make sure all"
" config values that contain non-ASCII content are Unicode strings." " config values that contain non-ASCII content are Unicode strings."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1051 #: sphinx/builders/html/__init__.py:1048
#, python-format #, python-format
msgid "" msgid ""
"An error happened in rendering the page %s.\n" "An error happened in rendering the page %s.\n"
"Reason: %r" "Reason: %r"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1080 #: sphinx/builders/html/__init__.py:1077
msgid "dumping object inventory" msgid "dumping object inventory"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1085 #: sphinx/builders/html/__init__.py:1082
#, python-format #, python-format
msgid "dumping search index in %s" msgid "dumping search index in %s"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1127 #: sphinx/builders/html/__init__.py:1124
#, python-format #, python-format
msgid "invalid js_file: %r, ignored" msgid "invalid js_file: %r, ignored"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1214 #: sphinx/builders/html/__init__.py:1211
msgid "Many math_renderers are registered. But no math_renderer is selected." msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1217 #: sphinx/builders/html/__init__.py:1214
#, python-format #, python-format
msgid "Unknown math_renderer %r is given." msgid "Unknown math_renderer %r is given."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1225 #: sphinx/builders/html/__init__.py:1222
#, python-format #, python-format
msgid "html_extra_path entry %r does not exist" msgid "html_extra_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1229 #: sphinx/builders/html/__init__.py:1226
#, python-format #, python-format
msgid "html_extra_path entry %r is placed inside outdir" msgid "html_extra_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1238 #: sphinx/builders/html/__init__.py:1235
#, python-format #, python-format
msgid "html_static_path entry %r does not exist" msgid "html_static_path entry %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1242 #: sphinx/builders/html/__init__.py:1239
#, python-format #, python-format
msgid "html_static_path entry %r is placed inside outdir" msgid "html_static_path entry %r is placed inside outdir"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1251 sphinx/builders/latex/__init__.py:433 #: sphinx/builders/html/__init__.py:1248 sphinx/builders/latex/__init__.py:433
#, python-format #, python-format
msgid "logo file %r does not exist" msgid "logo file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1260 #: sphinx/builders/html/__init__.py:1257
#, python-format #, python-format
msgid "favicon file %r does not exist" msgid "favicon file %r does not exist"
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1280 #: sphinx/builders/html/__init__.py:1277
msgid "" msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use " "html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead." "html_permalinks and html_permalinks_icon instead."
msgstr "" msgstr ""
#: sphinx/builders/html/__init__.py:1306 #: sphinx/builders/html/__init__.py:1303
#, python-format #, python-format
msgid "%s %s documentation" msgid "%s %s documentation"
msgstr "" msgstr ""
@ -1849,71 +1849,71 @@ msgstr ""
msgid "%s %s" msgid "%s %s"
msgstr "" msgstr ""
#: sphinx/domains/c.py:1969 sphinx/domains/c.py:3282 #: sphinx/domains/c.py:1974 sphinx/domains/c.py:3299
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C declaration, also defined at %s:%s.\n" "Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3133 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3136 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3121 sphinx/domains/javascript.py:223 #: sphinx/domains/c.py:3138 sphinx/domains/javascript.py:223
#: sphinx/domains/python.py:403 #: sphinx/domains/python.py:403
msgid "Return type" msgid "Return type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3207 #: sphinx/domains/c.py:3224
#, python-format #, python-format
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3731 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3715 #: sphinx/domains/c.py:3732
msgid "variable" msgid "variable"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3733 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3717 #: sphinx/domains/c.py:3734
msgid "macro" msgid "macro"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3718 #: sphinx/domains/c.py:3735
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3736 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3737 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3738 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3739 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3741 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "" msgstr ""
@ -1942,36 +1942,36 @@ msgstr ""
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "" msgstr ""
@ -3487,11 +3487,11 @@ msgstr ""
msgid "undecodable source characters, replacing with \"?\": %r" msgid "undecodable source characters, replacing with \"?\": %r"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:515 #: sphinx/util/__init__.py:532
msgid "skipped" msgid "skipped"
msgstr "" msgstr ""
#: sphinx/util/__init__.py:520 #: sphinx/util/__init__.py:537
msgid "failed" msgid "failed"
msgstr "" msgstr ""
@ -3588,7 +3588,7 @@ msgstr ""
msgid "encountered title node not in section, topic, table, admonition or sidebar" msgid "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "" msgstr ""
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "" msgstr ""
@ -3607,12 +3607,12 @@ msgstr ""
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "" msgstr ""
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-06-06 00:16+0000\n" "POT-Creation-Date: 2021-06-27 00:10+0000\n"
"PO-Revision-Date: 2021-05-11 16:11+0000\n" "PO-Revision-Date: 2021-05-11 16:11+0000\n"
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n" "Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
"Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n"
@ -911,7 +911,7 @@ msgid "Failed to read build info file: %r"
msgstr "Su arrit të lexohet kartelë të dhënash montimi: %r" msgstr "Su arrit të lexohet kartelë të dhënash montimi: %r"
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187 #: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:99 #: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233 #: sphinx/writers/texinfo.py:233
#, python-format #, python-format
msgid "%b %d, %Y" msgid "%b %d, %Y"
@ -1839,12 +1839,12 @@ msgid ""
"Declaration is '.. c:%s:: %s'." "Declaration is '.. c:%s:: %s'."
msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'." msgstr "Deklarim C i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. c:%s:: %s'."
#: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6843 #: sphinx/domains/c.py:3116 sphinx/domains/cpp.py:6931
#: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736 #: sphinx/domains/python.py:389 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters" msgid "Parameters"
msgstr "Parametra" msgstr "Parametra"
#: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6852 #: sphinx/domains/c.py:3119 sphinx/domains/cpp.py:6940
#: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401 #: sphinx/domains/javascript.py:221 sphinx/domains/python.py:401
msgid "Returns" msgid "Returns"
msgstr "Kthime" msgstr "Kthime"
@ -1859,7 +1859,7 @@ msgstr "Lloj kthimi"
msgid "%s (C %s)" msgid "%s (C %s)"
msgstr "%s (C %s)" msgstr "%s (C %s)"
#: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7490 #: sphinx/domains/c.py:3714 sphinx/domains/cpp.py:7578
msgid "member" msgid "member"
msgstr "anëtar" msgstr "anëtar"
@ -1867,7 +1867,7 @@ msgstr "anëtar"
msgid "variable" msgid "variable"
msgstr "ndryshore" msgstr "ndryshore"
#: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7489 #: sphinx/domains/c.py:3716 sphinx/domains/cpp.py:7577
#: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107 #: sphinx/domains/javascript.py:326 sphinx/domains/python.py:1107
msgid "function" msgid "function"
msgstr "funksion" msgstr "funksion"
@ -1880,23 +1880,23 @@ msgstr "makro"
msgid "struct" msgid "struct"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7488 #: sphinx/domains/c.py:3719 sphinx/domains/cpp.py:7576
msgid "union" msgid "union"
msgstr "bashkim" msgstr "bashkim"
#: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7493 #: sphinx/domains/c.py:3720 sphinx/domains/cpp.py:7581
msgid "enum" msgid "enum"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7494 #: sphinx/domains/c.py:3721 sphinx/domains/cpp.py:7582
msgid "enumerator" msgid "enumerator"
msgstr "" msgstr ""
#: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7491 #: sphinx/domains/c.py:3722 sphinx/domains/cpp.py:7579
msgid "type" msgid "type"
msgstr "lloj" msgstr "lloj"
#: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7496 #: sphinx/domains/c.py:3724 sphinx/domains/cpp.py:7584
msgid "function parameter" msgid "function parameter"
msgstr "parametër funksioni" msgstr "parametër funksioni"
@ -1925,36 +1925,36 @@ msgstr "citim i përsëdytur %s, tjetër instancë te %s"
msgid "Citation [%s] is not referenced." msgid "Citation [%s] is not referenced."
msgstr "Përmendja [%s] sështë në referencë." msgstr "Përmendja [%s] sështë në referencë."
#: sphinx/domains/cpp.py:4653 sphinx/domains/cpp.py:7045 #: sphinx/domains/cpp.py:4710 sphinx/domains/cpp.py:7133
#, python-format #, python-format
msgid "" msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n" "Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'." "Declaration is '.. cpp:%s:: %s'."
msgstr "Deklarim C++ i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. cpp:%s:: %s'." msgstr "Deklarim C++ i përsëdytur, përkufizuar edhe te %s:%s.\nDeklarimi është '.. cpp:%s:: %s'."
#: sphinx/domains/cpp.py:6846 #: sphinx/domains/cpp.py:6934
msgid "Template Parameters" msgid "Template Parameters"
msgstr "Parametra Gjedhesh" msgstr "Parametra Gjedhesh"
#: sphinx/domains/cpp.py:6849 sphinx/domains/javascript.py:218 #: sphinx/domains/cpp.py:6937 sphinx/domains/javascript.py:218
msgid "Throws" msgid "Throws"
msgstr "" msgstr ""
#: sphinx/domains/cpp.py:6968 #: sphinx/domains/cpp.py:7056
#, python-format #, python-format
msgid "%s (C++ %s)" msgid "%s (C++ %s)"
msgstr "%s (C++ %s)" msgstr "%s (C++ %s)"
#: sphinx/domains/cpp.py:7487 sphinx/domains/javascript.py:328 #: sphinx/domains/cpp.py:7575 sphinx/domains/javascript.py:328
#: sphinx/domains/python.py:1109 #: sphinx/domains/python.py:1109
msgid "class" msgid "class"
msgstr "klasë" msgstr "klasë"
#: sphinx/domains/cpp.py:7492 #: sphinx/domains/cpp.py:7580
msgid "concept" msgid "concept"
msgstr "koncept" msgstr "koncept"
#: sphinx/domains/cpp.py:7497 #: sphinx/domains/cpp.py:7585
msgid "template parameter" msgid "template parameter"
msgstr "parametër gjedheje" msgstr "parametër gjedheje"
@ -3570,7 +3570,7 @@ msgid ""
"encountered title node not in section, topic, table, admonition or sidebar" "encountered title node not in section, topic, table, admonition or sidebar"
msgstr "u has nyje titulli jo në ndarje, temë, tabelë, paralajmërim ose anështyllë" msgstr "u has nyje titulli jo në ndarje, temë, tabelë, paralajmërim ose anështyllë"
#: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:243 #: sphinx/writers/latex.py:849 sphinx/writers/manpage.py:246
#: sphinx/writers/texinfo.py:637 #: sphinx/writers/texinfo.py:637
msgid "Footnotes" msgid "Footnotes"
msgstr "Poshtëshënime" msgstr "Poshtëshënime"
@ -3590,12 +3590,12 @@ msgstr "njësia e përmasave %s është e pavlefshme. U shpërfill."
msgid "unknown index entry type %s found" msgid "unknown index entry type %s found"
msgstr "u gjet lloj i panjohur %s zërash treguesi" msgstr "u gjet lloj i panjohur %s zërash treguesi"
#: sphinx/writers/manpage.py:292 sphinx/writers/text.py:804 #: sphinx/writers/manpage.py:295 sphinx/writers/text.py:804
#, python-format #, python-format
msgid "[image: %s]" msgid "[image: %s]"
msgstr "[figurë: %s]" msgstr "[figurë: %s]"
#: sphinx/writers/manpage.py:293 sphinx/writers/text.py:805 #: sphinx/writers/manpage.py:296 sphinx/writers/text.py:805
msgid "[image]" msgid "[image]"
msgstr "[figurë]" msgstr "[figurë]"

Some files were not shown because too many files have changed in this diff Show More