Merge branch '4.x'

This commit is contained in:
Takeshi KOMIYA 2021-12-24 00:30:29 +09:00
commit 4e8bca2f2f
81 changed files with 1022 additions and 1044 deletions

20
CHANGES
View File

@ -57,6 +57,7 @@ Features added
this behavior with the ``--respect-module-all`` switch.
* #9800: extlinks: Emit warning if a hardcoded link is replaceable
by an extlink, suggesting a replacement.
* #9961: html: Support nested <kbd> HTML elements in other HTML builders
* #9815: html theme: Wrap sidebar components in div to allow customizing their
layout via CSS
* #9899: py domain: Allows to specify cross-reference specifier (``.`` and
@ -65,6 +66,8 @@ Features added
checking in matched documents.
* #9793: sphinx-build: Allow to use the parallel build feature in macOS on macOS
and Python3.8+
* #9993: std domain: Allow to refer an inline target (ex. ``_`target name```)
via :rst:role:`ref` role
* #9391: texinfo: improve variable in ``samp`` role
* #9578: texinfo: Add :confval:`texinfo_cross_references` to disable cross
references for readability with standalone readers
@ -76,6 +79,8 @@ Bugs fixed
* #9883: autodoc: doccomment for the alias to mocked object was ignored
* #9908: autodoc: debug message is shown on building document using NewTypes
with Python 3.10
* #9968: autodoc: instance variables are not shown if __init__ method has
position-only-arguments
* #9947: i18n: topic directive having a bullet list can't be translatable
* #9878: mathjax: MathJax configuration is placed after loading MathJax itself
* #9857: Generated RFC links use outdated base url
@ -86,11 +91,12 @@ Bugs fixed
* #9940: LaTeX: Multi-function declaration in Python domain has cramped
vertical spacing in latexpdf output
* #9390: texinfo: Do not emit labels inside footnotes
* #9979: Error level messages were displayed as warning messages
Testing
--------
Release 4.3.2 (in development)
Release 4.3.3 (in development)
==============================
Dependencies
@ -108,12 +114,18 @@ Features added
Bugs fixed
----------
* #9917: C and C++, parse fundamental types no matter the order of simple type
specifiers.
Testing
--------
Release 4.3.2 (released Dec 19, 2021)
=====================================
Bugs fixed
----------
* #9917: C and C++, parse fundamental types no matter the order of simple type
specifiers.
Release 4.3.1 (released Nov 28, 2021)
=====================================

View File

@ -664,8 +664,8 @@ There are also config values that you can set:
.. confval:: autodoc_unqualified_typehints
If True, the leading module names of typehints of function signatures (ex.
``io.StringIO`` -> ``StringIO``). Defaults to False.
If True, the leading module names of typehints of function signatures are
removed (ex. ``io.StringIO`` -> ``StringIO``). Defaults to False.
.. versionadded:: 4.4

View File

@ -44,7 +44,7 @@ extras_require = {
'lint': [
'flake8>=3.5.0',
'isort',
'mypy>=0.920',
'mypy>=0.930',
'docutils-stubs',
"types-typed-ast",
"types-pkg_resources",

View File

@ -36,7 +36,7 @@ class KeyboardTransform(SphinxPostTransform):
x
"""
default_priority = 400
builders = ('html',)
formats = ('html',)
pattern = re.compile(r'(?<=.)(-|\+|\^|\s+)(?=.)')
multiwords_keys = (('caps', 'lock'),
('page' 'down'),

View File

@ -763,10 +763,11 @@ class StandardDomain(Domain):
sectname = clean_astext(title)
elif node.tagname == 'rubric':
sectname = clean_astext(node)
elif node.tagname == 'target' and len(node) > 0:
# inline target (ex: blah _`blah` blah)
sectname = clean_astext(node)
elif self.is_enumerable_node(node):
sectname = self.get_numfig_title(node)
if not sectname:
continue
else:
toctree = next(iter(node.traverse(addnodes.toctree)), None)
if toctree and toctree.get('caption'):
@ -774,7 +775,8 @@ class StandardDomain(Domain):
else:
# anonymous-only labels
continue
self.labels[name] = docname, labelid, sectname
if sectname:
self.labels[name] = docname, labelid, sectname
def add_program_option(self, program: str, name: str, docname: str, labelid: str) -> None:
self.progoptions[program, name] = (docname, labelid)

View File

@ -621,7 +621,7 @@ class BuildEnvironment:
def check_consistency(self) -> None:
"""Do consistency checks."""
included = set().union(*self.included.values()) # type: ignore
included = set().union(*self.included.values())
for docname in sorted(self.all_docs):
if docname not in self.files_to_rebuild:
if docname == self.config.root_doc:

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"
@ -19,130 +19,123 @@ msgstr ""
"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -150,12 +143,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -163,12 +156,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -794,12 +787,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -917,7 +910,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%b %d, %Y"
@ -1101,7 +1094,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "ইনডেক্স"
@ -1878,7 +1871,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "প্যারামিটার"
@ -1887,12 +1880,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr "রিটার্নস"
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr "রিটার্ন টাইপ"
@ -1905,7 +1898,7 @@ msgid "variable"
msgstr ""
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "ফাংশন"
@ -1983,7 +1976,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "ক্লাস"
@ -2000,7 +1993,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr "%s() (বিল্ট-ইন ফাংশন)"
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr "%s() (%s মেথড)"
@ -2015,7 +2008,7 @@ msgstr "%s() (ক্লাসে)"
msgid "%s (global variable or constant)"
msgstr ""
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr "%s (%s এ্যট্রিবিউট)"
@ -2029,20 +2022,20 @@ msgstr ""
msgid "%s (module)"
msgstr "%s (মডিউল)"
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr "মেথড"
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr "ডাটা"
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr "এ্যট্রিবিউট"
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "মডিউল"
@ -2056,7 +2049,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2073,7 +2066,7 @@ msgstr "অপারেটর"
msgid "object"
msgstr "অবজেক্ট"
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr "এক্সেপশন"
@ -2085,92 +2078,92 @@ msgstr "স্ট্যাটমেন্ট"
msgid "built-in function"
msgstr "বিল্ট-ইন ফাংশন"
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr ""
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr "রেইজেস"
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (%s মডিউলে)"
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr "%s (%s মডিউলে)"
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)"
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr "%s (বিল্ট-ইন ক্লাস)"
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr "%s (%s ক্লাসে)"
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (%s ক্লাস মেথড)"
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (%s স্ট্যাটিক মেথড)"
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr ""
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr "মডিউল সমূহ"
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr "ডেপ্রিকেটেড"
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr "ক্লাস মেথড"
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr "স্ট্যাটিক মেথড"
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr ""
@ -2838,7 +2831,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2890,44 +2883,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3543,12 +3536,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3605,27 +3598,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr "পাদটীকা"
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3639,16 +3632,16 @@ msgstr ""
msgid "[image]"
msgstr "[ছবি]"
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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

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

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n"
"MIME-Version: 1.0\n"
@ -18,130 +18,123 @@ msgstr ""
"Language: en_HK\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -149,12 +142,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -162,12 +155,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -793,12 +786,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -916,7 +909,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr ""
@ -1100,7 +1093,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr ""
@ -1877,7 +1870,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr ""
@ -1886,12 +1879,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr ""
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr ""
@ -1904,7 +1897,7 @@ msgid "variable"
msgstr ""
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr ""
@ -1982,7 +1975,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr ""
@ -1999,7 +1992,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr ""
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr ""
@ -2014,7 +2007,7 @@ msgstr ""
msgid "%s (global variable or constant)"
msgstr ""
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr ""
@ -2028,20 +2021,20 @@ msgstr ""
msgid "%s (module)"
msgstr ""
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr ""
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr ""
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr ""
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr ""
@ -2055,7 +2048,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2072,7 +2065,7 @@ msgstr ""
msgid "object"
msgstr ""
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr ""
@ -2084,92 +2077,92 @@ msgstr ""
msgid "built-in function"
msgstr ""
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr ""
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr ""
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr ""
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr ""
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr ""
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr ""
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr ""
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr ""
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr ""
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr ""
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr ""
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr ""
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr ""
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr ""
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr ""
@ -2837,7 +2830,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2889,44 +2882,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3542,12 +3535,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3604,27 +3597,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr ""
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3638,16 +3631,16 @@ msgstr ""
msgid "[image]"
msgstr ""
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
@ -20,130 +20,123 @@ msgstr ""
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Ne povas trovi fontan dosierujon (%s)"
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -151,12 +144,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -164,12 +157,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -795,12 +788,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -918,7 +911,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%b %d, %Y"
@ -1102,7 +1095,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr ""
@ -1879,7 +1872,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "Parametroj"
@ -1888,12 +1881,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr ""
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr ""
@ -1906,7 +1899,7 @@ msgid "variable"
msgstr ""
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "funkcio"
@ -1984,7 +1977,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "klaso"
@ -2001,7 +1994,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr ""
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr ""
@ -2016,7 +2009,7 @@ msgstr "%s() (klaso)"
msgid "%s (global variable or constant)"
msgstr ""
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr ""
@ -2030,20 +2023,20 @@ msgstr ""
msgid "%s (module)"
msgstr ""
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr ""
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr "datenoj"
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr "atributo"
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr ""
@ -2057,7 +2050,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2074,7 +2067,7 @@ msgstr ""
msgid "object"
msgstr ""
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr "escepto"
@ -2086,92 +2079,92 @@ msgstr ""
msgid "built-in function"
msgstr ""
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr ""
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr ""
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr ""
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr ""
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr ""
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr ""
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr ""
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr ""
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr ""
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr ""
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr ""
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr ""
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr ""
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr ""
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr ""
@ -2839,7 +2832,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2891,44 +2884,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3544,12 +3537,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3606,27 +3599,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr ""
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3640,16 +3633,16 @@ msgstr ""
msgid "[image]"
msgstr ""
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

@ -11,8 +11,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"
@ -22,130 +22,123 @@ msgstr ""
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Lähtekataloogi (%s) pole võimalik leida"
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr "Väljundkataloog (%s) ei ole kataloog"
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed"
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr "Sphinx v%s käitamine"
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada."
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr "väljundkataloogi loomine"
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr "tõlgete laadimine [%s]... "
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr "valmis"
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr "serialiseeritud keskkonna laadimine"
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr "tõrge: %s"
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html"
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr "oli edukas"
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr "lõppes probleemidega"
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr "ehitamine %s, %s hoiatus."
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr "ehitamine %s."
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -153,12 +146,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr "laiendus %s pole rööbiti lugemiseks turvaline"
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -166,12 +159,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr "laiendus %s pole rööbiti kirjutamiseks turvaline"
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -797,12 +790,12 @@ msgstr "Otsi vigu ülalolevast väljundist või failist %(outdir)s/output.txt"
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -920,7 +913,7 @@ msgstr "Viga ehitamise infofaili lugemisel: %r"
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%d. %b %Y"
@ -1104,7 +1097,7 @@ msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "Indeks"
@ -1881,7 +1874,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "Parameetrid"
@ -1890,12 +1883,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr "Tagastab"
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr "Tagastustüüp"
@ -1908,7 +1901,7 @@ msgid "variable"
msgstr "muutuja"
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "funktsioon"
@ -1986,7 +1979,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "klass"
@ -2003,7 +1996,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr "%s() (sisseehitatud funktsioon)"
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr "%s() (%s meetod)"
@ -2018,7 +2011,7 @@ msgstr "%s() (klass)"
msgid "%s (global variable or constant)"
msgstr "%s (globaalmuutuja või konstant)"
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr "%s (%s atribuut)"
@ -2032,20 +2025,20 @@ msgstr "Argumendid"
msgid "%s (module)"
msgstr "%s (moodul)"
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr "meetod"
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr "andmed"
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr "atribuut"
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "moodul"
@ -2059,7 +2052,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr "võrrandil %s on topeltsilt, teine instants on %s"
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr "Vigane math_eqref_format: %r"
@ -2076,7 +2069,7 @@ msgstr "operaator"
msgid "object"
msgstr "objekt"
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr "erind"
@ -2088,92 +2081,92 @@ msgstr "lause"
msgid "built-in function"
msgstr "sisseehitatud funktsioon"
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr "Muutujad"
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr ""
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (moodulis %s)"
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr "%s (moodulis %s)"
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (sisseehitatud muutuja)"
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr "%s (sisseehitatud klass)"
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr "%s (klass moodulis %s)"
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (klassi %s meetod)"
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (%s staatiline meetod)"
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr "Pythoni moodulite indeks"
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr "moodulid"
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr "Iganenud"
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr "klassi meetod"
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr "staatiline meetod"
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr " (iganenud)"
@ -2841,7 +2834,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2893,44 +2886,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr "Põlvnemine: %s"
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3546,12 +3539,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3608,27 +3601,27 @@ msgstr ":maxdepth: on liiga suur ja seda eiratakse."
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr "Joonealused märkused"
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3642,16 +3635,16 @@ msgstr "[pilt: %s]"
msgid "[image]"
msgstr "[pilt]"
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"
@ -19,130 +19,123 @@ msgstr ""
"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -150,12 +143,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -163,12 +156,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -794,12 +787,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -917,7 +910,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%d.%m.%Y"
@ -1101,7 +1094,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "Sisällysluettelo"
@ -1878,7 +1871,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr ""
@ -1887,12 +1880,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr ""
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr ""
@ -1905,7 +1898,7 @@ msgid "variable"
msgstr ""
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr ""
@ -1983,7 +1976,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr ""
@ -2000,7 +1993,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr ""
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr ""
@ -2015,7 +2008,7 @@ msgstr ""
msgid "%s (global variable or constant)"
msgstr ""
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr ""
@ -2029,20 +2022,20 @@ msgstr ""
msgid "%s (module)"
msgstr "%s (moduuli)"
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr ""
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr ""
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr ""
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "moduuli"
@ -2056,7 +2049,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2073,7 +2066,7 @@ msgstr ""
msgid "object"
msgstr ""
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr ""
@ -2085,92 +2078,92 @@ msgstr ""
msgid "built-in function"
msgstr ""
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr ""
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr ""
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr ""
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr ""
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr ""
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr ""
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr ""
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr ""
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr ""
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr ""
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr "moduulit"
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr "Poistettu"
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr ""
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr ""
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr " (poistettu)"
@ -2838,7 +2831,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2890,44 +2883,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3543,12 +3536,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3605,27 +3598,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr ""
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3639,16 +3632,16 @@ msgstr ""
msgid "[image]"
msgstr ""
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"
@ -19,130 +19,123 @@ msgstr ""
"Language: he\n"
"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -150,12 +143,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -163,12 +156,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -794,12 +787,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -917,7 +910,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr ""
@ -1101,7 +1094,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "אינדקס"
@ -1878,7 +1871,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "פרמטרים"
@ -1887,12 +1880,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr ""
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr ""
@ -1905,7 +1898,7 @@ msgid "variable"
msgstr "משתנה"
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "פונקציה"
@ -1983,7 +1976,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "מחלקה"
@ -2000,7 +1993,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr ""
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr ""
@ -2015,7 +2008,7 @@ msgstr ""
msgid "%s (global variable or constant)"
msgstr ""
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr ""
@ -2029,20 +2022,20 @@ msgstr ""
msgid "%s (module)"
msgstr ""
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr ""
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr ""
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr ""
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "מודול"
@ -2056,7 +2049,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2073,7 +2066,7 @@ msgstr ""
msgid "object"
msgstr ""
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr ""
@ -2085,92 +2078,92 @@ msgstr ""
msgid "built-in function"
msgstr ""
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr "משתנים"
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr ""
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr ""
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr ""
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr ""
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr ""
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr ""
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr ""
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr ""
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr ""
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr ""
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr ""
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr ""
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr ""
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr ""
@ -2838,7 +2831,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2890,44 +2883,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3543,12 +3536,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3605,27 +3598,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr "הערות שוליים"
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3639,16 +3632,16 @@ msgstr ""
msgid "[image]"
msgstr "[תמונה]"
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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

@ -13,7 +13,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"

View File

@ -9,7 +9,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 04:58+0000\n"
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -24,130 +24,123 @@ msgstr ""
"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "Não foi possível encontrar o diretório de origem (%s)"
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr "O diretório de saída (%s) não é um diretório"
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr "Diretório de origem e o diretório de destino não podem ser idênticos"
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr "Executando Sphinx v%s"
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr "Por motivo de segurança, o modo paralelo está desabilitado no macOS e python3.8 e acima. Para mais detalhes, leia https://github.com/sphinx-doc/sphinx/issues/6803"
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "Este projeto precisa de pelo menos Sphinx v%s e, portanto, não pode ser compilado com esta versão."
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr "criando o diretório de saída"
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr "enquanto definia a extensão %s:"
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr "“setup”, conforme definido atualmente em conf.py, não é um invocável do Python. Modifique sua definição para torná-la uma função que pode ser chamada. Isso é necessário para o conf.py se comportar como uma extensão do Sphinx."
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr "carregando traduções [%s]… "
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr "feito"
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr "não disponível para mensagens internas"
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr "carregando ambiente com pickle"
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr "falha: %s"
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr "Nenhum compilador selecionado, usando padrão: html"
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr "bem-sucedida"
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr "finalizada com problemas"
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr "compilação %s, %s aviso. (com avisos tratados como erros)."
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr "compilação %s, %s avisos (com avisos tratados como erros)."
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr "compilação %s, %s aviso."
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr "compilação %s, %s avisos."
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr "compilação %s."
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr "classe de nodo %r já está registrada, seus visitantes serão sobrescritos"
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr "diretiva %r já está registrada, ela será sobrescrita"
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr "papel %r já está registrado, ele será sobrescrito"
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -155,12 +148,12 @@ msgid ""
"explicit"
msgstr "a extensão %s não declara se é segura para leitura em paralelo, supondo que não seja peça ao autor da extensão para verificar e torná-la explícita"
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr "a extensão %s não é segura para leitura em paralelo"
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -168,12 +161,12 @@ msgid ""
"explicit"
msgstr "a extensão %s não declara se é segura para escrita em paralelo, supondo que não seja peça ao autor da extensão para verificar e torná-la explícita"
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr "a extensão %s não é segura para escrita em paralelo"
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr "fazendo serial %s"
@ -799,12 +792,12 @@ msgstr "Procure por quaisquer erros na saída acima ou em %(outdir)s/output.txt"
msgid "broken link: %s (%s)"
msgstr "link quebrado: %s (%s)"
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr "Âncora “%s” não encontrada"
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr "Falha ao compilar regex em linkcheck_allowed_redirects: %r %s"
@ -922,7 +915,7 @@ msgstr "Falha ao ler o arquivo de informações de compilação: %r"
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%d %b %Y"
@ -1106,7 +1099,7 @@ msgstr "o valor da configuração “latex_documents” faz referência a um doc
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "Índice"
@ -1883,7 +1876,7 @@ msgid "%s (C %s)"
msgstr "%s (C %s)"
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "Parâmetros"
@ -1892,12 +1885,12 @@ msgid "Return values"
msgstr "Valores de retorno"
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr "Retorna"
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr "Tipo de retorno"
@ -1910,7 +1903,7 @@ msgid "variable"
msgstr "variável"
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "função"
@ -1988,7 +1981,7 @@ msgid "Throws"
msgstr "Lança"
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "classe"
@ -2005,7 +1998,7 @@ msgstr "parâmetro de modelo"
msgid "%s() (built-in function)"
msgstr "%s() (função interna)"
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr "%s() (método %s)"
@ -2020,7 +2013,7 @@ msgstr "%s() (classe)"
msgid "%s (global variable or constant)"
msgstr "%s (variável global ou constante)"
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr "%s (atributo %s)"
@ -2034,20 +2027,20 @@ msgstr "Argumentos"
msgid "%s (module)"
msgstr "%s (módulo)"
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr "método"
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr "dado"
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr "atributo"
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "módulo"
@ -2061,7 +2054,7 @@ msgstr "descrição duplicada de %s de %s, outro %s em %s"
msgid "duplicate label of equation %s, other instance in %s"
msgstr "rótulo duplicado da equação %s, outra instância em %s"
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr "math_eqref_format inválido: %r"
@ -2078,7 +2071,7 @@ msgstr "operador"
msgid "object"
msgstr "objeto"
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr "exceção"
@ -2090,92 +2083,92 @@ msgstr "comando"
msgid "built-in function"
msgstr "função interna"
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr "Variáveis"
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr "Levanta"
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (no módulo %s)"
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr "%s (no módulo %s)"
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (variável interna)"
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr "%s (classe interna)"
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr "%s (classe em %s)"
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (método de classe %s)"
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr "%s (propriedade %s )"
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (método estático %s)"
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr "Índice de Módulos Python"
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr "módulos"
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr "Obsoleto"
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr "método de classe"
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr "método estático"
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr "propriedade"
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr "descrição duplicada de objeto de %s, outra instância em %s, use :noindex: para um deles"
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr "mais de um alvo localizado para referência cruzada %r: %s"
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr " (obsoleto)"
@ -2843,7 +2836,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:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr "faltando atributo %s no objeto %s"
@ -2895,44 +2888,44 @@ 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:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, 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:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, 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:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr "Base: %s"
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr "apelido de %s"
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr "apelido de TypeVar(%s)"
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, 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:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr "__slots__ inválido encontrado em %s. Ignorado."
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3548,12 +3541,12 @@ msgid ""
"it directly: %s"
msgstr "Formato de data inválido. Envolva a string com aspas simples se desejar emiti-la diretamente: %s"
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr "toctree contém referência ao arquivo inexistente %r"
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr "exceção ao avaliar apenas a expressão da diretiva: %s"
@ -3610,27 +3603,27 @@ msgstr ":maxdepth: grande demais, ignorado."
msgid "document title is not a single Text node"
msgstr "título do documento não é um nó único em Text"
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr "nó de título encontrado não na section, topic, table, admonition ou sidebar"
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr "Notas de rodapé"
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr "tabularcolumns e opção :widths: foram fornecidas. :widths: foi ignorada."
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr "a unidade de dimensão %s é inválida. Ignorada."
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr "tipo desconhecido de entrada de índice %s encontrado"
@ -3644,16 +3637,16 @@ msgstr "[imagem: %s]"
msgid "[image]"
msgstr "[imagem]"
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr "legenda não dentro de uma imagem."
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr "tipo de nó não implementado: %r"
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr "tipo de nó desconhecido: %r"

View File

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"

View File

@ -14,7 +14,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"
"MIME-Version: 1.0\n"

View File

@ -11,7 +11,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"

View File

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

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx 4.4.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"POT-Creation-Date: 2021-12-19 00:12+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"
@ -1875,75 +1875,75 @@ msgstr ""
msgid "%s %s"
msgstr ""
#: sphinx/domains/c.py:2008 sphinx/domains/c.py:3290
#: sphinx/domains/c.py:2000 sphinx/domains/c.py:3306
#, python-format
msgid ""
"Duplicate C declaration, also defined at %s:%s.\n"
"Declaration is '.. c:%s:: %s'."
msgstr ""
#: sphinx/domains/c.py:3215
#: sphinx/domains/c.py:3231
#, python-format
msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/c.py:3352 sphinx/domains/cpp.py:7261
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr ""
#: sphinx/domains/c.py:3339 sphinx/domains/cpp.py:7183
#: sphinx/domains/c.py:3355 sphinx/domains/cpp.py:7267
msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/c.py:3358 sphinx/domains/cpp.py:7270
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr ""
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/c.py:3360 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr ""
#: sphinx/domains/c.py:3740 sphinx/domains/cpp.py:7591
#: sphinx/domains/c.py:3756 sphinx/domains/cpp.py:7675
msgid "member"
msgstr ""
#: sphinx/domains/c.py:3741
#: sphinx/domains/c.py:3757
msgid "variable"
msgstr ""
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/c.py:3758 sphinx/domains/cpp.py:7674
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr ""
#: sphinx/domains/c.py:3743
#: sphinx/domains/c.py:3759
msgid "macro"
msgstr ""
#: sphinx/domains/c.py:3744
#: sphinx/domains/c.py:3760
msgid "struct"
msgstr ""
#: sphinx/domains/c.py:3745 sphinx/domains/cpp.py:7589
#: sphinx/domains/c.py:3761 sphinx/domains/cpp.py:7673
msgid "union"
msgstr ""
#: sphinx/domains/c.py:3746 sphinx/domains/cpp.py:7594
#: sphinx/domains/c.py:3762 sphinx/domains/cpp.py:7678
msgid "enum"
msgstr ""
#: sphinx/domains/c.py:3747 sphinx/domains/cpp.py:7595
#: sphinx/domains/c.py:3763 sphinx/domains/cpp.py:7679
msgid "enumerator"
msgstr ""
#: sphinx/domains/c.py:3748 sphinx/domains/cpp.py:7592
#: sphinx/domains/c.py:3764 sphinx/domains/cpp.py:7676
msgid "type"
msgstr ""
#: sphinx/domains/c.py:3750 sphinx/domains/cpp.py:7597
#: sphinx/domains/c.py:3766 sphinx/domains/cpp.py:7681
msgid "function parameter"
msgstr ""
@ -1972,36 +1972,36 @@ msgstr ""
msgid "Citation [%s] is not referenced."
msgstr ""
#: sphinx/domains/cpp.py:4754 sphinx/domains/cpp.py:7132
#: sphinx/domains/cpp.py:4748 sphinx/domains/cpp.py:7216
#, python-format
msgid ""
"Duplicate C++ declaration, also defined at %s:%s.\n"
"Declaration is '.. cpp:%s:: %s'."
msgstr ""
#: sphinx/domains/cpp.py:6938
#: sphinx/domains/cpp.py:7022
msgid "Template Parameters"
msgstr ""
#: sphinx/domains/cpp.py:7055
#: sphinx/domains/cpp.py:7139
#, python-format
msgid "%s (C++ %s)"
msgstr ""
#: sphinx/domains/cpp.py:7180 sphinx/domains/javascript.py:228
#: sphinx/domains/cpp.py:7264 sphinx/domains/javascript.py:228
msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/cpp.py:7672 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1206
msgid "class"
msgstr ""
#: sphinx/domains/cpp.py:7593
#: sphinx/domains/cpp.py:7677
msgid "concept"
msgstr ""
#: sphinx/domains/cpp.py:7598
#: sphinx/domains/cpp.py:7682
msgid "template parameter"
msgstr ""

View File

@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+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"

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\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-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n"
"MIME-Version: 1.0\n"
@ -18,130 +18,123 @@ msgstr ""
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -149,12 +142,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -162,12 +155,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -793,12 +786,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -916,7 +909,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%b %d, %Y"
@ -1100,7 +1093,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "Index"
@ -1877,7 +1870,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "Parametrar"
@ -1886,12 +1879,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr "Returnerar"
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr "Returtyp"
@ -1904,7 +1897,7 @@ msgid "variable"
msgstr "variabel"
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "funktion"
@ -1982,7 +1975,7 @@ msgid "Throws"
msgstr "Kastar"
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "klass"
@ -1999,7 +1992,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr "%s() (inbyggd funktion)"
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr "%s() (%s metod)"
@ -2014,7 +2007,7 @@ msgstr "%s() (klass)"
msgid "%s (global variable or constant)"
msgstr "%s (global variabel eller konstant)"
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr "%s (%s attribut)"
@ -2028,20 +2021,20 @@ msgstr "Argument"
msgid "%s (module)"
msgstr "%s (modul)"
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr "metod"
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr "data"
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr "attribut"
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "modul"
@ -2055,7 +2048,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2072,7 +2065,7 @@ msgstr "operator"
msgid "object"
msgstr "objekt"
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr "undantag"
@ -2084,92 +2077,92 @@ msgstr "uttryck"
msgid "built-in function"
msgstr "inbyggda funktioner"
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr "Variabler"
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr "Väcker"
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (i modul %s)"
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr "%s (i modul %s)"
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (inbyggd variabel)"
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr "%s (inbyggd klass)"
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr "%s (klass i %s)"
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (%s klassmetod)"
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (%s statisk metod)"
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr "Python Modulindex"
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr "moduler"
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr "Ersatt"
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr "klassmetod"
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr "statisk metod"
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr ""
@ -2837,7 +2830,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2889,44 +2882,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3542,12 +3535,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3604,27 +3597,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr "Fotnoter"
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3638,16 +3631,16 @@ msgstr ""
msgid "[image]"
msgstr "[image]"
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -22,8 +22,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n"
"MIME-Version: 1.0\n"
@ -33,130 +33,123 @@ msgstr ""
"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr "无法找到源码目录 (%s)"
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr "源文件目录和目标目录不能是同一目录"
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr "正在运行 Sphinx v%s"
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr "该项目需要 Sphinx v%s 及以上版本,使用现有版本不能构建文档。"
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr "创建输出目录"
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr "同时设置扩展名 %s:"
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对象。请把其定义改为一个可调用的函数。Sphinx 扩展的 conf.py 必须这样配置。"
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr "正在加载翻译 [%s]... "
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr "完成"
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr "没有内置信息的翻译"
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr "加载 pickled环境"
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr "失败:%s"
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr "未选择构建程序默认使用html"
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr "成功"
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr "完成但存在问题"
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr "构建 %s%s 警告(将警告视为错误)。"
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr "构建 %s%s 警告(将警告视为错误)。"
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr "构建 %s, %s 警告。"
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr "构建 %s%s 警告。"
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr "构建 %s."
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr "节点类 %r 已注册,其访问者将被覆盖"
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr "指令 %r 已注册,将被覆盖"
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr "角色 %r 已注册,将被覆盖"
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -164,12 +157,12 @@ msgid ""
"explicit"
msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明"
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr "扩展 %s 不是并行读取安全的"
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -177,12 +170,12 @@ msgid ""
"explicit"
msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明"
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr "扩展 %s 不是并行写入安全的"
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr "执行顺序 %s"
@ -808,12 +801,12 @@ msgstr "在上述输出或 %(outdir)s/output.txt 中检查错误"
msgid "broken link: %s (%s)"
msgstr "损坏的链接:%s(%s)"
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr "锚点“%s”未找到"
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -931,7 +924,7 @@ msgstr "读取构建信息文件失败:%r"
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr "%Y 年 %m 月 %d 日"
@ -1115,7 +1108,7 @@ msgstr "配置项“latex_documents”引用了未知文档 %s"
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr "索引"
@ -1892,7 +1885,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr "参数"
@ -1901,12 +1894,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr "返回"
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr "返回类型"
@ -1919,7 +1912,7 @@ msgid "variable"
msgstr "变量"
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr "函数"
@ -1997,7 +1990,7 @@ msgid "Throws"
msgstr "抛出"
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr "类"
@ -2014,7 +2007,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr "%s() (內置函数)"
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr "%s() (%s 方法)"
@ -2029,7 +2022,7 @@ msgstr "%s() (类)"
msgid "%s (global variable or constant)"
msgstr "%s (全局变量或常量)"
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr "%s (%s 属性)"
@ -2043,20 +2036,20 @@ msgstr "参数"
msgid "%s (module)"
msgstr "%s (模块)"
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr "方法"
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr "数据"
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr "属性"
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr "模块"
@ -2070,7 +2063,7 @@ msgstr "对%s重复的描述 %s其它的%s出现在 %s"
msgid "duplicate label of equation %s, other instance in %s"
msgstr "重复的公式标签 %s另一实例出现在 %s"
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr "无效的 math_eqref_format%r"
@ -2087,7 +2080,7 @@ msgstr "运算符"
msgid "object"
msgstr "对象"
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr "例外"
@ -2099,92 +2092,92 @@ msgstr "语句"
msgid "built-in function"
msgstr "內置函数"
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr "变量"
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr "引发"
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr "%s() (在 %s 模块中)"
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr "%s() (在 %s 模块中)"
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr "%s (內置变量)"
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr "%s (內置类)"
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr "%s (%s 中的类)"
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr "%s() (%s 类方法)"
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr "%s() (%s 静态方法)"
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr "Python 模块索引"
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr "模块"
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr "已移除"
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr "类方法"
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr "静态方法"
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr "重复的对象描述%s ,另一实例出现在使用 noindex 中:对它们其中的一个 %s"
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr "交叉引用 %r 找到了多个目标:%s"
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr " (已移除)"
@ -2852,7 +2845,7 @@ msgstr "无效的 auto%s 签名(%r"
msgid "error while formatting arguments for %s: %s"
msgstr "格式化 %s 参数时报错:%s"
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr "属性 %s 不存在,在对象 %s 上"
@ -2904,44 +2897,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr "基类:%s"
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3557,12 +3550,12 @@ msgid ""
"it directly: %s"
msgstr "无效的日期格式。如果你想直接输出日期字符串,请用单引号:%s"
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr "目录树引用的文件 %r 不存在"
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr "only 指令表达式求值时抛出异常:%s"
@ -3619,27 +3612,27 @@ msgstr "过大的 :mathdepth:,已忽略。"
msgid "document title is not a single Text node"
msgstr "文档标题不是一个单纯文本节点"
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr "在节、话题、表格、警示或边栏以外的位置发现标题节点"
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr "脚注"
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr "给出了表格列和 width选项。宽度被忽略。"
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr "无效的量纲单位 %s已忽略。"
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr "发现未知的索引条目类型 %s"
@ -3653,16 +3646,16 @@ msgstr "[图片: %s]"
msgid "[image]"
msgstr "[图片]"
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr "在图示之外发现了图示标题。"
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr "未实现的节点类型:%r"
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr "未知节点类型:%r"

View File

@ -8,7 +8,7 @@ msgstr ""
"Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\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-12-05 00:11+0000\n"
"PO-Revision-Date: 2021-12-05 00:12+0000\n"
"POT-Creation-Date: 2021-12-12 00:11+0000\n"
"PO-Revision-Date: 2021-12-12 00:11+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n"
"MIME-Version: 1.0\n"
@ -18,130 +18,123 @@ msgstr ""
"Language: zh_TW.Big5\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: sphinx/application.py:157
#: sphinx/application.py:156
#, python-format
msgid "Cannot find source directory (%s)"
msgstr ""
#: sphinx/application.py:161
#: sphinx/application.py:160
#, python-format
msgid "Output directory (%s) is not a directory"
msgstr ""
#: sphinx/application.py:165
#: sphinx/application.py:164
msgid "Source directory and destination directory cannot be identical"
msgstr ""
#: sphinx/application.py:196
#: sphinx/application.py:195
#, python-format
msgid "Running Sphinx v%s"
msgstr ""
#: sphinx/application.py:200
msgid ""
"For security reasons, parallel mode is disabled on macOS and python3.8 and "
"above. For more details, please read https://github.com/sphinx-"
"doc/sphinx/issues/6803"
msgstr ""
#: sphinx/application.py:228
#: sphinx/application.py:221
#, python-format
msgid ""
"This project needs at least Sphinx v%s and therefore cannot be built with "
"this version."
msgstr ""
#: sphinx/application.py:243
#: sphinx/application.py:236
msgid "making output directory"
msgstr ""
#: sphinx/application.py:248 sphinx/registry.py:426
#: sphinx/application.py:241 sphinx/registry.py:426
#, python-format
msgid "while setting up extension %s:"
msgstr ""
#: sphinx/application.py:254
#: sphinx/application.py:247
msgid ""
"'setup' as currently defined in conf.py isn't a Python callable. Please "
"modify its definition to make it a callable function. This is needed for "
"conf.py to behave as a Sphinx extension."
msgstr ""
#: sphinx/application.py:279
#: sphinx/application.py:272
#, python-format
msgid "loading translations [%s]... "
msgstr ""
#: sphinx/application.py:297 sphinx/util/__init__.py:539
#: sphinx/application.py:290 sphinx/util/__init__.py:539
msgid "done"
msgstr ""
#: sphinx/application.py:299
#: sphinx/application.py:292
msgid "not available for built-in messages"
msgstr ""
#: sphinx/application.py:308
#: sphinx/application.py:301
msgid "loading pickled environment"
msgstr ""
#: sphinx/application.py:313
#: sphinx/application.py:306
#, python-format
msgid "failed: %s"
msgstr ""
#: sphinx/application.py:321
#: sphinx/application.py:314
msgid "No builder selected, using default: html"
msgstr ""
#: sphinx/application.py:349
#: sphinx/application.py:342
msgid "succeeded"
msgstr ""
#: sphinx/application.py:350
#: sphinx/application.py:343
msgid "finished with problems"
msgstr ""
#: sphinx/application.py:354
#: sphinx/application.py:347
#, python-format
msgid "build %s, %s warning (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:356
#: sphinx/application.py:349
#, python-format
msgid "build %s, %s warnings (with warnings treated as errors)."
msgstr ""
#: sphinx/application.py:359
#: sphinx/application.py:352
#, python-format
msgid "build %s, %s warning."
msgstr ""
#: sphinx/application.py:361
#: sphinx/application.py:354
#, python-format
msgid "build %s, %s warnings."
msgstr ""
#: sphinx/application.py:365
#: sphinx/application.py:358
#, python-format
msgid "build %s."
msgstr ""
#: sphinx/application.py:595
#: sphinx/application.py:588
#, python-format
msgid "node class %r is already registered, its visitors will be overridden"
msgstr ""
#: sphinx/application.py:673
#: sphinx/application.py:666
#, python-format
msgid "directive %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:694 sphinx/application.py:715
#: sphinx/application.py:687 sphinx/application.py:708
#, python-format
msgid "role %r is already registered, it will be overridden"
msgstr ""
#: sphinx/application.py:1246
#: sphinx/application.py:1239
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel reading, "
@ -149,12 +142,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1250
#: sphinx/application.py:1243
#, python-format
msgid "the %s extension is not safe for parallel reading"
msgstr ""
#: sphinx/application.py:1253
#: sphinx/application.py:1246
#, python-format
msgid ""
"the %s extension does not declare if it is safe for parallel writing, "
@ -162,12 +155,12 @@ msgid ""
"explicit"
msgstr ""
#: sphinx/application.py:1257
#: sphinx/application.py:1250
#, python-format
msgid "the %s extension is not safe for parallel writing"
msgstr ""
#: sphinx/application.py:1265 sphinx/application.py:1269
#: sphinx/application.py:1258 sphinx/application.py:1262
#, python-format
msgid "doing serial %s"
msgstr ""
@ -793,12 +786,12 @@ msgstr ""
msgid "broken link: %s (%s)"
msgstr ""
#: sphinx/builders/linkcheck.py:454
#: sphinx/builders/linkcheck.py:456
#, python-format
msgid "Anchor '%s' not found"
msgstr ""
#: sphinx/builders/linkcheck.py:690
#: sphinx/builders/linkcheck.py:701
#, python-format
msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s"
msgstr ""
@ -916,7 +909,7 @@ msgstr ""
#: sphinx/builders/html/__init__.py:469 sphinx/builders/latex/__init__.py:187
#: sphinx/transforms/__init__.py:116 sphinx/writers/manpage.py:102
#: sphinx/writers/texinfo.py:233
#: sphinx/writers/texinfo.py:234
#, python-format
msgid "%b %d, %Y"
msgstr ""
@ -1100,7 +1093,7 @@ msgstr ""
#: sphinx/themes/basic/genindex-split.html:14
#: sphinx/themes/basic/genindex.html:11 sphinx/themes/basic/genindex.html:34
#: sphinx/themes/basic/genindex.html:67 sphinx/themes/basic/layout.html:147
#: sphinx/writers/texinfo.py:498
#: sphinx/writers/texinfo.py:499
msgid "Index"
msgstr ""
@ -1877,7 +1870,7 @@ msgid "%s (C %s)"
msgstr ""
#: sphinx/domains/c.py:3336 sphinx/domains/cpp.py:7177
#: sphinx/domains/python.py:432 sphinx/ext/napoleon/docstring.py:736
#: sphinx/domains/python.py:446 sphinx/ext/napoleon/docstring.py:736
msgid "Parameters"
msgstr ""
@ -1886,12 +1879,12 @@ msgid "Return values"
msgstr ""
#: sphinx/domains/c.py:3342 sphinx/domains/cpp.py:7186
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:444
#: sphinx/domains/javascript.py:231 sphinx/domains/python.py:458
msgid "Returns"
msgstr ""
#: sphinx/domains/c.py:3344 sphinx/domains/javascript.py:233
#: sphinx/domains/python.py:446
#: sphinx/domains/python.py:460
msgid "Return type"
msgstr ""
@ -1904,7 +1897,7 @@ msgid "variable"
msgstr ""
#: sphinx/domains/c.py:3742 sphinx/domains/cpp.py:7590
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1190
#: sphinx/domains/javascript.py:340 sphinx/domains/python.py:1204
msgid "function"
msgstr ""
@ -1982,7 +1975,7 @@ msgid "Throws"
msgstr ""
#: sphinx/domains/cpp.py:7588 sphinx/domains/javascript.py:342
#: sphinx/domains/python.py:1192
#: sphinx/domains/python.py:1206
msgid "class"
msgstr ""
@ -1999,7 +1992,7 @@ msgstr ""
msgid "%s() (built-in function)"
msgstr ""
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:829
#: sphinx/domains/javascript.py:147 sphinx/domains/python.py:843
#, python-format
msgid "%s() (%s method)"
msgstr ""
@ -2014,7 +2007,7 @@ msgstr ""
msgid "%s (global variable or constant)"
msgstr ""
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:914
#: sphinx/domains/javascript.py:153 sphinx/domains/python.py:928
#, python-format
msgid "%s (%s attribute)"
msgstr ""
@ -2028,20 +2021,20 @@ msgstr ""
msgid "%s (module)"
msgstr ""
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1194
#: sphinx/domains/javascript.py:341 sphinx/domains/python.py:1208
msgid "method"
msgstr ""
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1191
#: sphinx/domains/javascript.py:343 sphinx/domains/python.py:1205
msgid "data"
msgstr ""
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1197
#: sphinx/domains/javascript.py:344 sphinx/domains/python.py:1211
msgid "attribute"
msgstr ""
#: sphinx/domains/javascript.py:345 sphinx/domains/python.py:58
#: sphinx/domains/python.py:1199
#: sphinx/domains/python.py:1213
msgid "module"
msgstr ""
@ -2055,7 +2048,7 @@ msgstr ""
msgid "duplicate label of equation %s, other instance in %s"
msgstr ""
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2073
#: sphinx/domains/math.py:119 sphinx/writers/latex.py:2071
#, python-format
msgid "Invalid math_eqref_format: %r"
msgstr ""
@ -2072,7 +2065,7 @@ msgstr ""
msgid "object"
msgstr ""
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1193
#: sphinx/domains/python.py:62 sphinx/domains/python.py:1207
msgid "exception"
msgstr ""
@ -2084,92 +2077,92 @@ msgstr ""
msgid "built-in function"
msgstr ""
#: sphinx/domains/python.py:437
#: sphinx/domains/python.py:451
msgid "Variables"
msgstr ""
#: sphinx/domains/python.py:441
#: sphinx/domains/python.py:455
msgid "Raises"
msgstr ""
#: sphinx/domains/python.py:674 sphinx/domains/python.py:818
#: sphinx/domains/python.py:688 sphinx/domains/python.py:832
#, python-format
msgid "%s() (in module %s)"
msgstr ""
#: sphinx/domains/python.py:734 sphinx/domains/python.py:910
#: sphinx/domains/python.py:961
#: sphinx/domains/python.py:748 sphinx/domains/python.py:924
#: sphinx/domains/python.py:975
#, python-format
msgid "%s (in module %s)"
msgstr ""
#: sphinx/domains/python.py:736
#: sphinx/domains/python.py:750
#, python-format
msgid "%s (built-in variable)"
msgstr ""
#: sphinx/domains/python.py:761
#: sphinx/domains/python.py:775
#, python-format
msgid "%s (built-in class)"
msgstr ""
#: sphinx/domains/python.py:762
#: sphinx/domains/python.py:776
#, python-format
msgid "%s (class in %s)"
msgstr ""
#: sphinx/domains/python.py:823
#: sphinx/domains/python.py:837
#, python-format
msgid "%s() (%s class method)"
msgstr ""
#: sphinx/domains/python.py:825 sphinx/domains/python.py:965
#: sphinx/domains/python.py:839 sphinx/domains/python.py:979
#, python-format
msgid "%s (%s property)"
msgstr ""
#: sphinx/domains/python.py:827
#: sphinx/domains/python.py:841
#, python-format
msgid "%s() (%s static method)"
msgstr ""
#: sphinx/domains/python.py:1119
#: sphinx/domains/python.py:1133
msgid "Python Module Index"
msgstr ""
#: sphinx/domains/python.py:1120
#: sphinx/domains/python.py:1134
msgid "modules"
msgstr ""
#: sphinx/domains/python.py:1169
#: sphinx/domains/python.py:1183
msgid "Deprecated"
msgstr ""
#: sphinx/domains/python.py:1195
#: sphinx/domains/python.py:1209
msgid "class method"
msgstr ""
#: sphinx/domains/python.py:1196
#: sphinx/domains/python.py:1210
msgid "static method"
msgstr ""
#: sphinx/domains/python.py:1198
#: sphinx/domains/python.py:1212
msgid "property"
msgstr ""
#: sphinx/domains/python.py:1256
#: sphinx/domains/python.py:1270
#, python-format
msgid ""
"duplicate object description of %s, other instance in %s, use :noindex: for "
"one of them"
msgstr ""
#: sphinx/domains/python.py:1376
#: sphinx/domains/python.py:1390
#, python-format
msgid "more than one target found for cross-reference %r: %s"
msgstr ""
#: sphinx/domains/python.py:1430
#: sphinx/domains/python.py:1444
msgid " (deprecated)"
msgstr ""
@ -2837,7 +2830,7 @@ msgstr ""
msgid "error while formatting arguments for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1683
#: sphinx/ext/autodoc/__init__.py:663 sphinx/ext/autodoc/__init__.py:1693
#, python-format
msgid "missing attribute %s in object %s"
msgstr ""
@ -2889,44 +2882,44 @@ msgid ""
"missing attribute mentioned in :members: option: module %s, attribute %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378
#: sphinx/ext/autodoc/__init__.py:2753
#: sphinx/ext/autodoc/__init__.py:1306 sphinx/ext/autodoc/__init__.py:1383
#: sphinx/ext/autodoc/__init__.py:2768
#, python-format
msgid "Failed to get a function signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1569
#: sphinx/ext/autodoc/__init__.py:1576
#, python-format
msgid "Failed to get a constructor signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1670
#: sphinx/ext/autodoc/__init__.py:1680
#, python-format
msgid "Bases: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837
#: sphinx/ext/autodoc/__init__.py:1856
#: sphinx/ext/autodoc/__init__.py:1774 sphinx/ext/autodoc/__init__.py:1847
#: sphinx/ext/autodoc/__init__.py:1866
#, python-format
msgid "alias of %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:1898
#: sphinx/ext/autodoc/__init__.py:1908
#, python-format
msgid "alias of TypeVar(%s)"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2132 sphinx/ext/autodoc/__init__.py:2226
#: sphinx/ext/autodoc/__init__.py:2144 sphinx/ext/autodoc/__init__.py:2241
#, python-format
msgid "Failed to get a method signature for %s: %s"
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2357
#: sphinx/ext/autodoc/__init__.py:2372
#, python-format
msgid "Invalid __slots__ found on %s. Ignored."
msgstr ""
#: sphinx/ext/autodoc/__init__.py:2796
#: sphinx/ext/autodoc/__init__.py:2811
msgid ""
"autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"."
" Please update your setting."
@ -3542,12 +3535,12 @@ msgid ""
"it directly: %s"
msgstr ""
#: sphinx/util/nodes.py:424
#: sphinx/util/nodes.py:429
#, python-format
msgid "toctree contains ref to nonexisting file %r"
msgstr ""
#: sphinx/util/nodes.py:610
#: sphinx/util/nodes.py:615
#, python-format
msgid "exception while evaluating only directive expression: %s"
msgstr ""
@ -3604,27 +3597,27 @@ msgstr ""
msgid "document title is not a single Text node"
msgstr ""
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:622
#: sphinx/writers/latex.py:676 sphinx/writers/texinfo.py:626
msgid ""
"encountered title node not in section, topic, table, admonition or sidebar"
msgstr ""
#: sphinx/writers/latex.py:848 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:637
#: sphinx/writers/latex.py:846 sphinx/writers/manpage.py:247
#: sphinx/writers/texinfo.py:641
msgid "Footnotes"
msgstr ""
#: sphinx/writers/latex.py:907
#: sphinx/writers/latex.py:905
msgid ""
"both tabularcolumns and :widths: option are given. :widths: is ignored."
msgstr ""
#: sphinx/writers/latex.py:1238
#: sphinx/writers/latex.py:1236
#, python-format
msgid "dimension unit %s is invalid. Ignored."
msgstr ""
#: sphinx/writers/latex.py:1551
#: sphinx/writers/latex.py:1549
#, python-format
msgid "unknown index entry type %s found"
msgstr ""
@ -3638,16 +3631,16 @@ msgstr ""
msgid "[image]"
msgstr ""
#: sphinx/writers/texinfo.py:1181
#: sphinx/writers/texinfo.py:1193
msgid "caption not inside a figure."
msgstr ""
#: sphinx/writers/texinfo.py:1265
#: sphinx/writers/texinfo.py:1281
#, python-format
msgid "unimplemented node type: %r"
msgstr ""
#: sphinx/writers/texinfo.py:1269
#: sphinx/writers/texinfo.py:1285
#, python-format
msgid "unknown node type: %r"
msgstr ""

View File

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

View File

@ -312,6 +312,10 @@ class VariableCommentPicker(ast.NodeVisitor):
"""Returns the name of the first argument if in a function."""
if self.current_function and self.current_function.args.args:
return self.current_function.args.args[0]
elif (self.current_function and
getattr(self.current_function.args, 'posonlyargs', None)):
# for py38+
return self.current_function.args.posonlyargs[0] # type: ignore
else:
return None

View File

@ -69,7 +69,7 @@ def unwrap_all(obj: Any, *, stop: Callable = None) -> Any:
elif ispartial(obj):
obj = obj.func
elif inspect.isroutine(obj) and hasattr(obj, '__wrapped__'):
obj = obj.__wrapped__
obj = obj.__wrapped__ # type: ignore
elif isclassmethod(obj):
obj = obj.__func__
elif isstaticmethod(obj):
@ -620,7 +620,7 @@ def signature(subject: Callable, bound_method: bool = False, type_aliases: Dict
#
# For example, this helps a function having a default value `inspect._empty`.
# refs: https://github.com/sphinx-doc/sphinx/issues/7935
return inspect.Signature(parameters, return_annotation=return_annotation, # type: ignore
return inspect.Signature(parameters, return_annotation=return_annotation,
__validate_parameters__=False)
@ -748,14 +748,14 @@ def signature_from_ast(node: ast.FunctionDef, code: str = '') -> inspect.Signatu
positionals = len(args.args)
for _ in range(len(defaults), positionals):
defaults.insert(0, Parameter.empty)
defaults.insert(0, Parameter.empty) # type: ignore
if hasattr(args, "posonlyargs"):
for i, arg in enumerate(args.posonlyargs): # type: ignore
if defaults[i] is Parameter.empty:
default = Parameter.empty
else:
default = DefaultValue(ast_unparse(defaults[i], code))
default = DefaultValue(ast_unparse(defaults[i], code)) # type: ignore
annotation = ast_unparse(arg.annotation, code) or Parameter.empty
params.append(Parameter(arg.arg, Parameter.POSITIONAL_ONLY,
@ -765,7 +765,7 @@ def signature_from_ast(node: ast.FunctionDef, code: str = '') -> inspect.Signatu
if defaults[i + posonlyargs] is Parameter.empty:
default = Parameter.empty
else:
default = DefaultValue(ast_unparse(defaults[i + posonlyargs], code))
default = DefaultValue(ast_unparse(defaults[i + posonlyargs], code)) # type: ignore # NOQA
annotation = ast_unparse(arg.annotation, code) or Parameter.empty
params.append(Parameter(arg.arg, Parameter.POSITIONAL_OR_KEYWORD,
@ -777,7 +777,7 @@ def signature_from_ast(node: ast.FunctionDef, code: str = '') -> inspect.Signatu
annotation=annotation))
for i, arg in enumerate(args.kwonlyargs):
default = ast_unparse(args.kw_defaults[i], code) or Parameter.empty
default = ast_unparse(args.kw_defaults[i], code) or Parameter.empty # type: ignore
annotation = ast_unparse(arg.annotation, code) or Parameter.empty
params.append(Parameter(arg.arg, Parameter.KEYWORD_ONLY, default=default,
annotation=annotation))

View File

@ -111,7 +111,14 @@ class SphinxInfoLogRecord(SphinxLogRecord):
class SphinxWarningLogRecord(SphinxLogRecord):
"""Warning log record class supporting location"""
prefix = 'WARNING: '
@property
def prefix(self) -> str: # type: ignore
if self.levelno >= logging.CRITICAL:
return 'CRITICAL: '
elif self.levelno >= logging.ERROR:
return 'ERROR: '
else:
return 'WARNING: '
class SphinxLoggerAdapter(logging.LoggerAdapter):

View File

@ -107,7 +107,7 @@ class ManualPageTranslator(SphinxTranslator, BaseTranslator):
# Overwrite admonition label translations with our own
for label, translation in admonitionlabels.items():
self.language.labels[label] = self.deunicode(translation) # type: ignore
self.language.labels[label] = self.deunicode(translation)
# overwritten -- added quotes around all .TH arguments
def header(self) -> str:

View File

@ -314,7 +314,6 @@ def test_parse_annotation(app):
[desc_sig_punctuation, "]"]))
doctree = _parse_annotation("Callable[[int, int], int]", app.env)
print(doctree)
assert_node(doctree, ([pending_xref, "Callable"],
[desc_sig_punctuation, "["],
[desc_sig_punctuation, "["],

View File

@ -452,3 +452,12 @@ def test_labeled_rubric(app):
domain = app.env.get_domain("std")
assert 'label' in domain.labels
assert domain.labels['label'] == ('index', 'label', 'blah blah blah')
def test_inline_target(app):
text = "blah _`inline target` blah\n"
restructuredtext.parse(app, text)
domain = app.env.get_domain("std")
assert 'inline target' in domain.labels
assert domain.labels['inline target'] == ('index', 'inline-target', 'inline target')

View File

@ -191,3 +191,18 @@ def test_ModuleAnalyzer_find_attr_docs():
'Qux': 15,
'Qux.attr1': 16,
'Qux.attr2': 17}
@pytest.mark.skipif(sys.version_info < (3, 8),
reason='posonlyargs are available since python3.8.')
def test_ModuleAnalyzer_find_attr_docs_for_posonlyargs_method():
code = ('class Foo(object):\n'
' def __init__(self, /):\n'
' self.attr = None #: attribute comment\n')
analyzer = ModuleAnalyzer.for_string(code, 'module')
docs = analyzer.find_attr_docs()
assert set(docs) == {('Foo', 'attr')}
assert docs[('Foo', 'attr')] == ['attribute comment', '']
assert analyzer.tagorder == {'Foo': 0,
'Foo.__init__': 1,
'Foo.attr': 2}

View File

@ -41,9 +41,9 @@ def test_info_and_warning(app, status, warning):
assert 'message1' not in warning.getvalue()
assert 'message2' not in warning.getvalue()
assert 'message3' in warning.getvalue()
assert 'message4' in warning.getvalue()
assert 'message5' in warning.getvalue()
assert 'WARNING: message3' in warning.getvalue()
assert 'CRITICAL: message4' in warning.getvalue()
assert 'ERROR: message5' in warning.getvalue()
def test_Exception(app, status, warning):
@ -305,8 +305,8 @@ def test_colored_logs(app, status, warning):
assert 'message2\n' in status.getvalue() # not colored
assert 'message3\n' in status.getvalue() # not colored
assert colorize('red', 'WARNING: message4') in warning.getvalue()
assert 'WARNING: message5\n' in warning.getvalue() # not colored
assert colorize('darkred', 'WARNING: message6') in warning.getvalue()
assert 'CRITICAL: message5\n' in warning.getvalue() # not colored
assert colorize('darkred', 'ERROR: message6') in warning.getvalue()
# color specification
logger.debug('message7', color='white')