Merge branch '4.x'

This commit is contained in:
Takeshi KOMIYA
2021-08-21 21:03:30 +09:00
131 changed files with 939 additions and 799 deletions

View File

@@ -40,6 +40,7 @@ Features added
template variable ``sphinx_version_tuple``
* #9445: py domain: ``:py:property:`` directive supports ``:classmethod:``
option to describe the class property
* #9535: C and C++, support more fundamental types, including GNU extensions.
Bugs fixed
----------
@@ -55,6 +56,9 @@ Bugs fixed
* #9481: cpp domain: some warnings contain non-existing filenames
* #9456: html search: abbreation marks are inserted to the search result if
failed to fetch the content of the page
* #9267: html theme: CSS and JS files added by theme were loaded twice
* #9535 comment: C++, fix parsing of defaulted function parameters that are
function pointers.
Testing
--------

View File

@@ -453,7 +453,7 @@ General configuration
As a special character, ``%s`` will be replaced to figure number.
Default is to use ``'Fig. %s'`` for ``'figure'``, ``'Table %s'`` for
``'table'``, ``'Listing %s'`` for ``'code-block'`` and ``'Section'`` for
``'table'``, ``'Listing %s'`` for ``'code-block'`` and ``'Section %s'`` for
``'section'``.
.. versionadded:: 1.3
@@ -1309,11 +1309,11 @@ that use Sphinx's HTMLWriter class.
.. confval:: html_use_opensearch
If nonempty, an `OpenSearch <https://www.opensearch.org/>`_ description
file will be output, and all pages will contain a ``<link>`` tag referring
to it. Since OpenSearch doesn't support relative URLs for its search page
location, the value of this option must be the base URL from which these
documents are served (without trailing slash), e.g.
If nonempty, an `OpenSearch <https://github.com/dewitt/opensearch>`_
description file will be output, and all pages will contain a ``<link>``
tag referring to it. Since OpenSearch doesn't support relative URLs for
its search page location, the value of this option must be the base URL
from which these documents are served (without trailing slash), e.g.
``"https://docs.python.org"``. The default is ``''``.
.. confval:: html_file_suffix

View File

@@ -287,13 +287,14 @@ class StandaloneHTMLBuilder(Builder):
if dark_style is not None:
self.dark_highlighter = PygmentsBridge('html', dark_style)
self.add_css_file('pygments_dark.css',
media='(prefers-color-scheme: dark)',
id='pygments_dark_css')
self.app.add_css_file('pygments_dark.css',
media='(prefers-color-scheme: dark)',
id='pygments_dark_css')
else:
self.dark_highlighter = None
def init_css_files(self) -> None:
self.css_files = []
self.add_css_file('pygments.css', priority=200)
self.add_css_file(self._get_style_filename(), priority=200)
@@ -311,6 +312,7 @@ class StandaloneHTMLBuilder(Builder):
self.css_files.append(Stylesheet(filename, **kwargs))
def init_js_files(self) -> None:
self.script_files = []
self.add_js_file('documentation_options.js', id="documentation_options",
data_url_root='', priority=200)
self.add_js_file('jquery.js', priority=200)

View File

@@ -92,6 +92,34 @@ _id_prefix = [None, 'c.', 'Cv2.']
_string_re = re.compile(r"[LuU8]?('([^'\\]*(?:\\.[^'\\]*)*)'"
r'|"([^"\\]*(?:\\.[^"\\]*)*)")', re.S)
_simple_type_sepcifiers_re = re.compile(r"""(?x)
\b(
void|_Bool|bool
# Integer
# -------
|((signed|unsigned)\s+)?(char|(
((long\s+long|long|short)\s+)?int
))
|__uint128|__int128
# extensions
|((signed|unsigned)\s+)?__int(8|16|32|64|128)
# Floating-point
# --------------
|(float|double|long\s+double)(\s+(_Complex|complex|_Imaginary|imaginary))?
|(_Complex|complex|_Imaginary|imaginary)\s+(float|double|long\s+double)
|_Decimal(32|64|128)
# extensions
|__float80|_Float64x|__float128|_Float128|__ibm128
|__fp16
# Fixed-point, extension
|(_Sat\s+)?((signed|unsigned)\s+)?((short|long|long\s+long)\s+)?(_Fract|fract|_Accum|accum)
# Integer types that could be prefixes of the previous ones
# ---------------------------------------------------------
|((signed|unsigned)\s+)?(long\s+long|long|short)
|signed|unsigned
)\b
""")
class _DuplicateSymbolError(Exception):
def __init__(self, symbol: "Symbol", declaration: "ASTDeclaration") -> None:
@@ -609,14 +637,20 @@ class ASTTrailingTypeSpec(ASTBase):
class ASTTrailingTypeSpecFundamental(ASTTrailingTypeSpec):
def __init__(self, name: str) -> None:
self.name = name
self.names = name.split()
def _stringify(self, transform: StringifyTransform) -> str:
return self.name
return ' '.join(self.names)
def describe_signature(self, signode: TextElement, mode: str,
env: "BuildEnvironment", symbol: "Symbol") -> None:
signode += addnodes.desc_sig_keyword_type(self.name, self.name)
first = True
for n in self.names:
if not first:
signode += addnodes.desc_sig_space()
else:
first = False
signode += addnodes.desc_sig_keyword_type(n, n)
class ASTTrailingTypeSpecName(ASTTrailingTypeSpec):
@@ -2123,15 +2157,6 @@ class Symbol:
class DefinitionParser(BaseParser):
# those without signedness and size modifiers
# see https://en.cppreference.com/w/cpp/language/types
_simple_fundamental_types = (
'void', '_Bool', 'bool', 'char', 'int', 'float', 'double',
'__int64',
)
_prefix_keys = ('struct', 'enum', 'union')
@property
def language(self) -> str:
return 'C'
@@ -2556,40 +2581,16 @@ class DefinitionParser(BaseParser):
return ASTNestedName(names, rooted)
def _parse_trailing_type_spec(self) -> ASTTrailingTypeSpec:
# fundamental types
# fundamental types, https://en.cppreference.com/w/c/language/type
# and extensions
self.skip_ws()
for t in self._simple_fundamental_types:
if self.skip_word(t):
return ASTTrailingTypeSpecFundamental(t)
# TODO: this could/should be more strict
elements = []
if self.skip_word_and_ws('signed'):
elements.append('signed')
elif self.skip_word_and_ws('unsigned'):
elements.append('unsigned')
while 1:
if self.skip_word_and_ws('short'):
elements.append('short')
elif self.skip_word_and_ws('long'):
elements.append('long')
else:
break
if self.skip_word_and_ws('char'):
elements.append('char')
elif self.skip_word_and_ws('int'):
elements.append('int')
elif self.skip_word_and_ws('double'):
elements.append('double')
elif self.skip_word_and_ws('__int64'):
elements.append('__int64')
if len(elements) > 0:
return ASTTrailingTypeSpecFundamental(' '.join(elements))
if self.match(_simple_type_sepcifiers_re):
return ASTTrailingTypeSpecFundamental(self.matched_text)
# prefixed
prefix = None
self.skip_ws()
for k in self._prefix_keys:
for k in ('struct', 'enum', 'union'):
if self.skip_word_and_ws(k):
prefix = k
break

View File

@@ -334,6 +334,31 @@ _keywords = [
'while', 'xor', 'xor_eq'
]
_simple_type_sepcifiers_re = re.compile(r"""(?x)
\b(
auto|void|bool
# Integer
# -------
|((signed|unsigned)\s+)?(char|__int128|(
((long\s+long|long|short)\s+)?int
))
|wchar_t|char(8|16|32)_t
# extensions
|((signed|unsigned)\s+)?__int(64|128)
# Floating-point
# --------------
|(float|double|long\s+double)(\s+(_Complex|_Imaginary))?
|(_Complex|_Imaginary)\s+(float|double|long\s+double)
# extensions
|__float80|_Float64x|__float128|_Float128
# Integer types that could be prefixes of the previous ones
# ---------------------------------------------------------
|((signed|unsigned)\s+)?(long\s+long|long|short)
|signed|unsigned
)\b
""")
_max_id = 4
_id_prefix = [None, '', '_CPPv2', '_CPPv3', '_CPPv4']
# Ids are used in lookup keys which are used across pickled files,
@@ -449,11 +474,23 @@ _id_fundamental_v2 = {
'long long int': 'x',
'signed long long': 'x',
'signed long long int': 'x',
'__int64': 'x',
'unsigned long long': 'y',
'unsigned long long int': 'y',
'__int128': 'n',
'signed __int128': 'n',
'unsigned __int128': 'o',
'float': 'f',
'double': 'd',
'long double': 'e',
'__float80': 'e', '_Float64x': 'e',
'__float128': 'g', '_Float128': 'g',
'float _Complex': 'Cf', '_Complex float': 'Cf',
'double _Complex': 'Cd', '_Complex double': 'Cd',
'long double _Complex': 'Ce', '_Complex long double': 'Ce',
'float _Imaginary': 'f', '_Imaginary float': 'f',
'double _Imaginary': 'd', '_Imaginary double': 'd',
'long double _Imaginary': 'e', '_Imaginary long double': 'e',
'auto': 'Da',
'decltype(auto)': 'Dc',
'std::nullptr_t': 'Dn'
@@ -1817,31 +1854,38 @@ class ASTTrailingTypeSpec(ASTBase):
class ASTTrailingTypeSpecFundamental(ASTTrailingTypeSpec):
def __init__(self, name: str) -> None:
self.name = name
self.names = name.split()
def _stringify(self, transform: StringifyTransform) -> str:
return self.name
return ' '.join(self.names)
def get_id(self, version: int) -> str:
if version == 1:
res = []
for a in self.name.split(' '):
for a in self.names:
if a in _id_fundamental_v1:
res.append(_id_fundamental_v1[a])
else:
res.append(a)
return '-'.join(res)
if self.name not in _id_fundamental_v2:
txt = str(self)
if txt not in _id_fundamental_v2:
raise Exception(
'Semi-internal error: Fundamental type "%s" can not be mapped '
'to an id. Is it a true fundamental type? If not so, the '
'parser should have rejected it.' % self.name)
return _id_fundamental_v2[self.name]
'to an ID. Is it a true fundamental type? If not so, the '
'parser should have rejected it.' % txt)
return _id_fundamental_v2[txt]
def describe_signature(self, signode: TextElement, mode: str,
env: "BuildEnvironment", symbol: "Symbol") -> None:
signode += addnodes.desc_sig_keyword_type(self.name, self.name)
first = True
for n in self.names:
if not first:
signode += addnodes.desc_sig_space()
else:
first = False
signode += addnodes.desc_sig_keyword_type(n, n)
class ASTTrailingTypeSpecDecltypeAuto(ASTTrailingTypeSpec):
@@ -4996,15 +5040,6 @@ class Symbol:
class DefinitionParser(BaseParser):
# those without signedness and size modifiers
# see https://en.cppreference.com/w/cpp/language/types
_simple_fundemental_types = (
'void', 'bool', 'char', 'wchar_t', 'char8_t', 'char16_t', 'char32_t',
'int', 'float', 'double', 'auto'
)
_prefix_keys = ('class', 'struct', 'enum', 'union', 'typename')
@property
def language(self) -> str:
return 'C++'
@@ -5821,33 +5856,11 @@ class DefinitionParser(BaseParser):
# ==========================================================================
def _parse_trailing_type_spec(self) -> ASTTrailingTypeSpec:
# fundemental types
# fundamental types, https://en.cppreference.com/w/cpp/language/type
# and extensions
self.skip_ws()
for t in self._simple_fundemental_types:
if self.skip_word(t):
return ASTTrailingTypeSpecFundamental(t)
# TODO: this could/should be more strict
elements = []
if self.skip_word_and_ws('signed'):
elements.append('signed')
elif self.skip_word_and_ws('unsigned'):
elements.append('unsigned')
while 1:
if self.skip_word_and_ws('short'):
elements.append('short')
elif self.skip_word_and_ws('long'):
elements.append('long')
else:
break
if self.skip_word_and_ws('char'):
elements.append('char')
elif self.skip_word_and_ws('int'):
elements.append('int')
elif self.skip_word_and_ws('double'):
elements.append('double')
if len(elements) > 0:
return ASTTrailingTypeSpecFundamental(' '.join(elements))
if self.match(_simple_type_sepcifiers_re):
return ASTTrailingTypeSpecFundamental(self.matched_text)
# decltype
self.skip_ws()
@@ -5867,7 +5880,7 @@ class DefinitionParser(BaseParser):
# prefixed
prefix = None
self.skip_ws()
for k in self._prefix_keys:
for k in ('class', 'struct', 'enum', 'union', 'typename'):
if self.skip_word_and_ws(k):
prefix = k
break
@@ -5923,13 +5936,6 @@ class DefinitionParser(BaseParser):
'Expecting "," or ")" in parameters-and-qualifiers, '
'got "%s".' % self.current_char)
# TODO: why did we have this bail-out?
# does it hurt to parse the extra stuff?
# it's needed for pointer to member functions
if paramMode != 'function' and False:
return ASTParametersQualifiers(
args, None, None, None, None, None, None, None)
self.skip_ws()
const = self.skip_word_and_ws('const')
volatile = self.skip_word_and_ws('volatile')
@@ -5976,7 +5982,8 @@ class DefinitionParser(BaseParser):
self.skip_ws()
initializer = None
if self.skip_string('='):
# if this is a function pointer we should not swallow an initializer
if paramMode == 'function' and self.skip_string('='):
self.skip_ws()
valid = ('0', 'delete', 'default')
for w in valid:

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n"

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n"
"MIME-Version: 1.0\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n"

View File

@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n"
"MIME-Version: 1.0\n"
@@ -629,7 +629,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s"
msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr ""
@@ -639,7 +639,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead"
msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
msgid "cannot copy image file %r: %s"
@@ -764,7 +764,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr ""
@@ -887,7 +887,7 @@ msgstr ""
msgid "The text files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -903,174 +903,174 @@ msgstr ""
msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/builders/html/__init__.py:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%d.%m.%Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Stichwortverzeichnis"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "Index"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "weiter"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "zurück"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr ""
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr ""
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr ""
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr ""
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr ""
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr ""
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr ""
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings."
msgstr ""
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr ""
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr ""
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr ""
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr ""
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr ""
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "%s %s Dokumentation"
@@ -2818,7 +2818,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@@ -2838,71 +2838,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3303,12 +3308,12 @@ msgid "search"
msgstr "suchen"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Suchergebnisse"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3374,12 +3379,12 @@ msgstr "Suchen"
msgid "Preparing search..."
msgstr "Suche wird vorbereitet..."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden."
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ", in "

View File

@@ -10,7 +10,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n"

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n"
"MIME-Version: 1.0\n"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n"

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n"
"MIME-Version: 1.0\n"

View File

@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n"

View File

@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n"

View File

@@ -33,7 +33,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n"

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n"
"MIME-Version: 1.0\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n"

View File

@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n"
"MIME-Version: 1.0\n"

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\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"
"MIME-Version: 1.0\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n"

View File

@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n"
"MIME-Version: 1.0\n"
@@ -631,7 +631,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s"
msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr ""
@@ -641,7 +641,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead"
msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
msgid "cannot copy image file %r: %s"
@@ -766,7 +766,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr ""
@@ -889,7 +889,7 @@ msgstr ""
msgid "The text files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -905,174 +905,174 @@ msgstr ""
msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/builders/html/__init__.py:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Általános tárgymutató"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "nyitóoldal"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "következő"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "előző"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr ""
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr ""
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr ""
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr ""
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr ""
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr ""
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr ""
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings."
msgstr ""
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr ""
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr ""
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr ""
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr ""
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr ""
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "%s %s dokumentáció"
@@ -2820,7 +2820,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@@ -2840,71 +2840,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3305,12 +3310,12 @@ msgid "search"
msgstr "keresés"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Keresési Eredmények"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3376,12 +3381,12 @@ msgstr "Keresés folyamatban"
msgid "Preparing search..."
msgstr "Felkészülés a keresésre..."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek."
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ", "

View File

@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n"

View File

@@ -12,8 +12,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n"
"MIME-Version: 1.0\n"
@@ -630,7 +630,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s"
msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr ""
@@ -640,7 +640,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead"
msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
msgid "cannot copy image file %r: %s"
@@ -765,7 +765,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr ""
@@ -888,7 +888,7 @@ msgstr ""
msgid "The text files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -904,174 +904,174 @@ msgstr ""
msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/builders/html/__init__.py:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%d %b %Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Indice generale"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "indice"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "successivo"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "precedente"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr ""
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr ""
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr ""
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr ""
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr ""
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr ""
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr ""
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings."
msgstr ""
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr ""
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr ""
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr ""
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr ""
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr ""
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "%s %s documentazione"
@@ -2819,7 +2819,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@@ -2839,71 +2839,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr " Basi: %s"
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3304,12 +3309,12 @@ msgid "search"
msgstr "cerca"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Risultati della ricerca"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3375,12 +3380,12 @@ msgstr "Cerca"
msgid "Preparing search..."
msgstr "Preparo la ricerca..."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr "Ricerca completata, trovata/e %s pagina/e corrispondenti."
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ", in "

View File

@@ -22,7 +22,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n"

View File

@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 02:19+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 12:15+0000\n"
"Last-Translator: YT H <dev@theYT.net>\n"
"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n"
"MIME-Version: 1.0\n"
@@ -2839,7 +2839,7 @@ msgstr "%r의 자동 문서화를 위해 가져올 모듈을 알 수 없습니
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
msgstr "모의 객체가 감지되었습니다: %r"
#: sphinx/ext/autodoc/__init__.py:968
#, python-format

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n"
"MIME-Version: 1.0\n"
@@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s"
msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr ""
@@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead"
msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
msgid "cannot copy image file %r: %s"
@@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr ""
@@ -884,7 +884,7 @@ msgstr ""
msgid "The text files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -900,174 +900,174 @@ msgstr ""
msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/builders/html/__init__.py:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%Y-%m-%d"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Bendras indeksas"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "indeksas"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "kitas"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "praeitas"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr ""
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr ""
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr ""
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr ""
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr ""
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr ""
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr ""
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings."
msgstr ""
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr ""
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr ""
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr ""
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr ""
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr ""
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr ""
@@ -2815,7 +2815,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@@ -2835,71 +2835,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3300,12 +3305,12 @@ msgid "search"
msgstr "ieškoti"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Paieškos rezultatai"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3371,12 +3376,12 @@ msgstr ""
msgid "Preparing search..."
msgstr ""
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr ""
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ""

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n"

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n"
"MIME-Version: 1.0\n"

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\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"
"MIME-Version: 1.0\n"

View File

@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n"
"MIME-Version: 1.0\n"

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n"

View File

@@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n"
"MIME-Version: 1.0\n"
@@ -629,7 +629,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s"
msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr "kopiowanie obrazków..."
@@ -639,7 +639,7 @@ msgstr "kopiowanie obrazków..."
msgid "cannot read image file %r: copying it instead"
msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
msgid "cannot copy image file %r: %s"
@@ -764,7 +764,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr "nieprawidłowy css_file: %r, zignorowano"
@@ -887,7 +887,7 @@ msgstr ""
msgid "The text files are in %(outdir)s."
msgstr "Pliki tekstowe są w %(outdir)s."
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -903,174 +903,174 @@ msgstr "Pliki XML znajdują się w %(outdir)s."
msgid "The pseudo-XML files are in %(outdir)s."
msgstr "Pliki pseudo-XML są w %(outdir)s."
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr "Strony HTML są w %(outdir)s."
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/builders/html/__init__.py:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%d %b %Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Indeks ogólny"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "indeks"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "dalej"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "wstecz"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr ""
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr ""
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr "kopiowanie plików do pobrania..."
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr ""
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr ""
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr "nie można skopiować pliku statycznego %r"
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr ""
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr "nie można skopiować dodatkowego pliku %r"
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr ""
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings."
msgstr ""
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r"
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr ""
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr ""
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr "nieprawidłowy js_file: %r, zignorowano"
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr "Podano nieznany math_renderer %r."
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr "plik favicon %r nie istnieje"
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr ""
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "%s %s - dokumentacja"
@@ -2818,7 +2818,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr "błąd podczas formatowania argumentów dla %s: %s"
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr "brakujący atrybut %s w obiekcie %s"
@@ -2838,71 +2838,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr "Klasy bazowe: %s"
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3303,12 +3308,12 @@ msgid "search"
msgstr "szukaj"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Wyniki wyszukiwania"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3374,12 +3379,12 @@ msgstr "Wyszukiwanie"
msgid "Preparing search..."
msgstr "Inicjalizacja wyszukiwania..."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr "Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do zapytania: %s."
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ", w "

View File

@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n"
"MIME-Version: 1.0\n"

View File

@@ -13,8 +13,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 02:20+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-11 17:54+0000\n"
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
@@ -631,7 +631,7 @@ msgstr "preparando documentos"
msgid "duplicated ToC entry found: %s"
msgstr "entrada de tabela de conteúdos duplicada encontrada: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr "copiando imagens… "
@@ -641,7 +641,7 @@ msgstr "copiando imagens… "
msgid "cannot read image file %r: copying it instead"
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:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
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"
msgstr "o valor da configuração “version” não deve estar vazio para EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr "css_file inválido: %r, ignorado"
@@ -889,7 +889,7 @@ msgstr "erro ao escrever o arquivo Makefile: %s"
msgid "The text files are in %(outdir)s."
msgstr "Os arquivos texto estão em %(outdir)s."
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -905,174 +905,174 @@ msgstr "Os arquivos XML estão em %(outdir)s."
msgid "The pseudo-XML files are in %(outdir)s."
msgstr "Os arquivos pseudo-XML estão em %(outdir)s."
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr "arquivo de informações da compilação está quebrado: %r"
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr "As páginas HTML estão em %(outdir)s."
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %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:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%d %b %Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Índice Geral"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "índice"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "próximo"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "anterior"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr "gerando índices"
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr "escrevendo páginas adicionais"
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr "copiando arquivos baixáveis… "
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr "não foi possível copiar o arquivo baixável %r: %s"
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "Falha ao copiar um arquivo em html_static_file: %s: %r"
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr "copiando arquivos estáticos"
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr "não foi possível copiar o arquivo estático %r"
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr "copiando arquivos extras"
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr "não foi possível copiar o arquivo extra %r"
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr "Falha ao escrever o arquivo de informações de compilação: %r"
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"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."
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
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"
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"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."
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr "Ocorreu um erro ao renderizar a página %s.\nMotivo: %r"
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr "despejando inventário de objetos"
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr "despejando índice de pesquisa em %s"
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr "js_file inválido: %r, ignorado"
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
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."
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr "math_renderer desconhecido %r é fornecido."
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr "a entrada de html_extra_path %r não existe"
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr "entrada de html_extra_path %r está posicionada dentro de outdir"
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr "a entrada de html_static_path %r não existe"
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr "entrada de html_static_path %r está posicionada dento de outdir"
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr "o arquivo logo %r não existe"
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr "o arquivo favicon %r não existe"
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr "html_add_permalinks foi descontinuado desde v3.5.0. Use html_permalinks e html_permalinks_icon."
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "documentação %s %s"
@@ -2820,7 +2820,7 @@ msgstr "assinatura inválida para auto%s (%r)"
msgid "error while formatting arguments for %s: %s"
msgstr "erro ao formatar argumentos para %s: %s"
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr "faltando atributo %s no objeto %s"
@@ -2840,71 +2840,76 @@ msgid ""
"explicit module name)"
msgstr "não sei qual módulo importar para documentação automática %r (tente colocar uma diretiva “module” ou “currentmodule” no documento ou forneça um nome explícito para o módulo)"
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr "Um objeto simulado foi detectado: %r"
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr "erro ao formatar assinatura para %s: %s"
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr "“::” no nome de automodule não faz sentido"
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr "argumentos de assinatura ou anotação de retorno fornecidos para automodule %s"
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr "__all__ deve ser uma lista de strings, não %r (no módulo %s) -- ignorando __all__"
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr "faltando atributo mencionado na opção :members: : módulo %s, atributo %s"
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr "Falha ao obter uma assinatura de função para %s: %s"
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr "Falha ao obter uma assinatura de construtor para %s: %s"
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr "Base: %s"
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr "apelido de %s"
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr "apelido de TypeVar(%s)"
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr "Falha ao obter uma assinatura de método para %s: %s"
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr "__slots__ inválido encontrado em %s. Ignorado."
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3305,12 +3310,12 @@ msgid "search"
msgstr "buscar"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Resultados da Busca"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3376,12 +3381,12 @@ msgstr "Buscando"
msgid "Preparing search..."
msgstr "Preparando a busca..."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr "Busca concluída. %s página(s) que atendem a consulta."
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ", em "

View File

@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\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"
"MIME-Version: 1.0\n"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n"

View File

@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n"

View File

@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n"
"MIME-Version: 1.0\n"
@@ -626,7 +626,7 @@ msgstr ""
msgid "duplicated ToC entry found: %s"
msgstr ""
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr ""
@@ -636,7 +636,7 @@ msgstr ""
msgid "cannot read image file %r: copying it instead"
msgstr ""
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
msgid "cannot copy image file %r: %s"
@@ -761,7 +761,7 @@ msgstr ""
msgid "conf value \"version\" should not be empty for EPUB3"
msgstr ""
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr ""
@@ -884,7 +884,7 @@ msgstr ""
msgid "The text files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -900,174 +900,174 @@ msgstr ""
msgid "The pseudo-XML files are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr ""
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:466 sphinx/builders/latex/__init__.py:187
#: sphinx/builders/html/__init__.py:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%b %d, %Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr ""
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr ""
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "ඊළඟ"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "පෙර"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr ""
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr ""
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr ""
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr ""
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr ""
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr ""
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr ""
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr ""
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
msgid "page %s matches two patterns in html_sidebars: %r and %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"config values that contain non-ASCII content are Unicode strings."
msgstr ""
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr ""
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr ""
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr ""
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr ""
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr ""
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr ""
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
msgid "html_extra_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
msgid "html_static_path entry %r is placed inside outdir"
msgstr ""
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr ""
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"html_permalinks and html_permalinks_icon instead."
msgstr ""
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "%s %s ලේඛණය"
@@ -2815,7 +2815,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@@ -2835,71 +2835,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3300,12 +3305,12 @@ msgid "search"
msgstr "සොයන්න"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "සෙවුම් ප්‍රතිඵල"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3371,12 +3376,12 @@ msgstr "සොයමින්..."
msgid "Preparing search..."
msgstr "සෙවුම සූදානම් කරමින්...."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr ""
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ""

View File

@@ -10,8 +10,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-01 00:09+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n"
"MIME-Version: 1.0\n"
@@ -628,7 +628,7 @@ msgstr "príprava dokumentov"
msgid "duplicated ToC entry found: %s"
msgstr "nájdená duplicitná položka Obsahu: %s"
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:726
#: sphinx/builders/_epub_base.py:405 sphinx/builders/html/__init__.py:728
#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:176
msgid "copying images... "
msgstr "kopírovanie obrázkov…"
@@ -638,7 +638,7 @@ msgstr "kopírovanie obrázkov…"
msgid "cannot read image file %r: copying it instead"
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:734
#: sphinx/builders/_epub_base.py:418 sphinx/builders/html/__init__.py:736
#: sphinx/builders/latex/__init__.py:429 sphinx/builders/texinfo.py:186
#, python-format
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"
msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3"
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1117
#: sphinx/builders/epub3.py:235 sphinx/builders/html/__init__.py:1119
#, python-format
msgid "invalid css_file: %r, ignored"
msgstr "neplatný css_file: %r, ignorovaný"
@@ -886,7 +886,7 @@ msgstr "chyba zápisu súboru Makefile: %s"
msgid "The text files are in %(outdir)s."
msgstr "Textové súbory sú v %(outdir)s."
#: sphinx/builders/html/__init__.py:1070 sphinx/builders/text.py:77
#: sphinx/builders/html/__init__.py:1072 sphinx/builders/text.py:77
#: sphinx/builders/xml.py:91
#, python-format
msgid "error writing file %s: %s"
@@ -902,174 +902,174 @@ msgstr "Súbory XML sú v %(outdir)s."
msgid "The pseudo-XML files are in %(outdir)s."
msgstr "Súbory pseudo-XML sú v %(outdir)s."
#: sphinx/builders/html/__init__.py:144
#: sphinx/builders/html/__init__.py:145
#, python-format
msgid "build info file is broken: %r"
msgstr "súbor info zostavenia je poškodený: %r"
#: sphinx/builders/html/__init__.py:176
#: sphinx/builders/html/__init__.py:177
#, python-format
msgid "The HTML pages are in %(outdir)s."
msgstr "Stránky HTML sú v %(outdir)s."
#: sphinx/builders/html/__init__.py:372
#: sphinx/builders/html/__init__.py:373
#, python-format
msgid "Failed to read build info file: %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:467 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#, python-format
msgid "%b %d, %Y"
msgstr "%d. %b %Y"
#: sphinx/builders/html/__init__.py:485 sphinx/themes/basic/defindex.html:30
#: sphinx/builders/html/__init__.py:486 sphinx/themes/basic/defindex.html:30
msgid "General Index"
msgstr "Všeobecný index"
#: sphinx/builders/html/__init__.py:485
#: sphinx/builders/html/__init__.py:486
msgid "index"
msgstr "index"
#: sphinx/builders/html/__init__.py:547
#: sphinx/builders/html/__init__.py:549
msgid "next"
msgstr "ďalší"
#: sphinx/builders/html/__init__.py:556
#: sphinx/builders/html/__init__.py:558
msgid "previous"
msgstr "predošlý"
#: sphinx/builders/html/__init__.py:650
#: sphinx/builders/html/__init__.py:652
msgid "generating indices"
msgstr "generovanie indexov"
#: sphinx/builders/html/__init__.py:665
#: sphinx/builders/html/__init__.py:667
msgid "writing additional pages"
msgstr "zapisovanie dodatočných stránok"
#: sphinx/builders/html/__init__.py:744
#: sphinx/builders/html/__init__.py:746
msgid "copying downloadable files... "
msgstr "kopírovanie súborov na stiahnutie…"
#: sphinx/builders/html/__init__.py:752
#: sphinx/builders/html/__init__.py:754
#, python-format
msgid "cannot copy downloadable file %r: %s"
msgstr "nemožno kopírovať súbor na stiahnutie %r: %s"
#: sphinx/builders/html/__init__.py:784 sphinx/builders/html/__init__.py:796
#: sphinx/builders/html/__init__.py:786 sphinx/builders/html/__init__.py:798
#, python-format
msgid "Failed to copy a file in html_static_file: %s: %r"
msgstr "Kopírovanie súboru v html_static_file zlyhalo: %s: %r"
#: sphinx/builders/html/__init__.py:817
#: sphinx/builders/html/__init__.py:819
msgid "copying static files"
msgstr "kopírovanie statických súborov"
#: sphinx/builders/html/__init__.py:833
#: sphinx/builders/html/__init__.py:835
#, python-format
msgid "cannot copy static file %r"
msgstr "nemožno kopírovať statický súbor %r"
#: sphinx/builders/html/__init__.py:838
#: sphinx/builders/html/__init__.py:840
msgid "copying extra files"
msgstr "kopírovanie extra súborov"
#: sphinx/builders/html/__init__.py:844
#: sphinx/builders/html/__init__.py:846
#, python-format
msgid "cannot copy extra file %r"
msgstr "nemožno kopírovať extra súbor %r"
#: sphinx/builders/html/__init__.py:851
#: sphinx/builders/html/__init__.py:853
#, python-format
msgid "Failed to write build info file: %r"
msgstr "Zápis súboru zostavenia info zlyhal: %r"
#: sphinx/builders/html/__init__.py:899
#: sphinx/builders/html/__init__.py:901
msgid ""
"search index couldn't be loaded, but not all documents will be built: the "
"index will be incomplete."
msgstr "index hľadania nemožno načítať, ale nebudú zostavované všetky dokumenty, takže index nebude kompletný."
#: sphinx/builders/html/__init__.py:960
#: sphinx/builders/html/__init__.py:962
#, python-format
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"
#: sphinx/builders/html/__init__.py:1053
#: sphinx/builders/html/__init__.py:1055
#, python-format
msgid ""
"a Unicode error occurred when rendering the page %s. Please make sure all "
"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."
#: sphinx/builders/html/__init__.py:1058
#: sphinx/builders/html/__init__.py:1060
#, python-format
msgid ""
"An error happened in rendering the page %s.\n"
"Reason: %r"
msgstr "Nastala chyba pri spracovaní stránky %s.\nPríčina: %r"
#: sphinx/builders/html/__init__.py:1087
#: sphinx/builders/html/__init__.py:1089
msgid "dumping object inventory"
msgstr "generovanie inventára objektov…"
#: sphinx/builders/html/__init__.py:1092
#: sphinx/builders/html/__init__.py:1094
#, python-format
msgid "dumping search index in %s"
msgstr "generovanie indexu hľadania v %s"
#: sphinx/builders/html/__init__.py:1134
#: sphinx/builders/html/__init__.py:1136
#, python-format
msgid "invalid js_file: %r, ignored"
msgstr "neplatné js_file: %r, ignorované"
#: sphinx/builders/html/__init__.py:1221
#: sphinx/builders/html/__init__.py:1223
msgid "Many math_renderers are registered. But no math_renderer is selected."
msgstr "Zaregistrovaných je viac math_renderer, ale žiadny nie je zvolený."
#: sphinx/builders/html/__init__.py:1224
#: sphinx/builders/html/__init__.py:1226
#, python-format
msgid "Unknown math_renderer %r is given."
msgstr "Zdaný neznámy math_renderer %r."
#: sphinx/builders/html/__init__.py:1232
#: sphinx/builders/html/__init__.py:1234
#, python-format
msgid "html_extra_path entry %r does not exist"
msgstr "položka „html_extra_path entry” %r neexistuje"
#: sphinx/builders/html/__init__.py:1236
#: sphinx/builders/html/__init__.py:1238
#, python-format
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"
#: sphinx/builders/html/__init__.py:1245
#: sphinx/builders/html/__init__.py:1247
#, python-format
msgid "html_static_path entry %r does not exist"
msgstr "položka „html_static_path” %r neexistuje"
#: sphinx/builders/html/__init__.py:1249
#: sphinx/builders/html/__init__.py:1251
#, python-format
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"
#: sphinx/builders/html/__init__.py:1258 sphinx/builders/latex/__init__.py:433
#: sphinx/builders/html/__init__.py:1260 sphinx/builders/latex/__init__.py:433
#, python-format
msgid "logo file %r does not exist"
msgstr "súbor loga %r neexistuje"
#: sphinx/builders/html/__init__.py:1267
#: sphinx/builders/html/__init__.py:1269
#, python-format
msgid "favicon file %r does not exist"
msgstr "súbor favicon %r neexistuje"
#: sphinx/builders/html/__init__.py:1287
#: sphinx/builders/html/__init__.py:1289
msgid ""
"html_add_permalinks has been deprecated since v3.5.0. Please use "
"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."
#: sphinx/builders/html/__init__.py:1313
#: sphinx/builders/html/__init__.py:1315
#, python-format
msgid "%s %s documentation"
msgstr "Dokumentácia %s %s"
@@ -2817,7 +2817,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr "chyba formátovania argumentov %s: %s"
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1678
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1682
#, python-format
msgid "missing attribute %s in object %s"
msgstr "chýba atribút %s objektu %s"
@@ -2837,71 +2837,76 @@ msgid ""
"explicit module name)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:964
#: sphinx/ext/autodoc/__init__.py:917
#, python-format
msgid "A mocked object is detected: %r"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:968
#, python-format
msgid "error while formatting signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1014
#: sphinx/ext/autodoc/__init__.py:1018
msgid "\"::\" in automodule name doesn't make sense"
msgstr "„::” v automodule nedáva zmysel"
#: sphinx/ext/autodoc/__init__.py:1021
#: sphinx/ext/autodoc/__init__.py:1025
#, python-format
msgid "signature arguments or return annotation given for automodule %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1034
#: sphinx/ext/autodoc/__init__.py:1038
#, python-format
msgid ""
"__all__ should be a list of strings, not %r (in module %s) -- ignoring "
"__all__"
msgstr "__all__ má byť zoznam reťazcov, nie %r (v module %s) -- ignorované __all__"
#: sphinx/ext/autodoc/__init__.py:1100
#: sphinx/ext/autodoc/__init__.py:1104
#, python-format
msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s"
#: sphinx/ext/autodoc/__init__.py:1299 sphinx/ext/autodoc/__init__.py:1373
#: sphinx/ext/autodoc/__init__.py:2726
#: sphinx/ext/autodoc/__init__.py:1303 sphinx/ext/autodoc/__init__.py:1377
#: sphinx/ext/autodoc/__init__.py:2734
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1564
#: sphinx/ext/autodoc/__init__.py:1568
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1665
#: sphinx/ext/autodoc/__init__.py:1669
#, python-format
msgid "Bases: %s"
msgstr "Základ: %s"
#: sphinx/ext/autodoc/__init__.py:1751 sphinx/ext/autodoc/__init__.py:1824
#: sphinx/ext/autodoc/__init__.py:1843
#: sphinx/ext/autodoc/__init__.py:1755 sphinx/ext/autodoc/__init__.py:1828
#: sphinx/ext/autodoc/__init__.py:1847
#, python-format
msgid "alias of %s"
msgstr "alias pre %s"
#: sphinx/ext/autodoc/__init__.py:1885
#: sphinx/ext/autodoc/__init__.py:1889
#, python-format
msgid "alias of TypeVar(%s)"
msgstr "alias pre TypeVar(%s)"
#: sphinx/ext/autodoc/__init__.py:2118 sphinx/ext/autodoc/__init__.py:2212
#: sphinx/ext/autodoc/__init__.py:2122 sphinx/ext/autodoc/__init__.py:2216
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2340
#: sphinx/ext/autodoc/__init__.py:2348
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr "Neplatné __slots__ nájdené v %s. Ignorované."
#: sphinx/ext/autodoc/__init__.py:2769
#: sphinx/ext/autodoc/__init__.py:2777
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@@ -3302,12 +3307,12 @@ msgid "search"
msgstr "hľadať"
#: sphinx/themes/basic/search.html:47
#: sphinx/themes/basic/static/searchtools.js:303
#: sphinx/themes/basic/static/searchtools.js:306
msgid "Search Results"
msgstr "Výsledky hľadania"
#: sphinx/themes/basic/search.html:49
#: sphinx/themes/basic/static/searchtools.js:305
#: sphinx/themes/basic/static/searchtools.js:308
msgid ""
"Your search did not match any documents. Please make sure that all words are"
" spelled correctly and that you've selected enough categories."
@@ -3373,12 +3378,12 @@ msgstr "Hľadanie"
msgid "Preparing search..."
msgstr "Príprava hľadania..."
#: sphinx/themes/basic/static/searchtools.js:307
#: sphinx/themes/basic/static/searchtools.js:310
#, python-format
msgid "Search finished, found %s page(s) matching the search query."
msgstr "Hľadanie dokončené, nájdené %s strana(y), ktoré vyhovujú hľadanému výrazu."
#: sphinx/themes/basic/static/searchtools.js:361
#: sphinx/themes/basic/static/searchtools.js:364
msgid ", in "
msgstr ", v "

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx 4.2.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"

View File

@@ -8,9 +8,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 10:35+0000\n"
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
"Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -2935,7 +2935,7 @@ msgstr "referenca vetëpërmbledhjeje përjashtuan dokumentin %r. U shpërfill."
msgid ""
"autosummary: stub file not found %r. Check your autosummary_generate "
"setting."
msgstr ""
msgstr "vetëpërmbledhje: su gjet kartelë stub %r. Kontrolloni rregullimin tuaj autosummary_generate."
#: sphinx/ext/autosummary/__init__.py:299
msgid "A captioned autosummary requires :toctree: option. ignored."

View File

@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-08-08 00:08+0000\n"
"PO-Revision-Date: 2021-07-25 00:08+0000\n"
"POT-Creation-Date: 2021-08-15 00:08+0000\n"
"PO-Revision-Date: 2021-08-08 00:08+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n"
"MIME-Version: 1.0\n"

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