diff --git a/CHANGES b/CHANGES index fa7b8407e56..f05768cdb69 100644 --- a/CHANGES +++ b/CHANGES @@ -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 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) ===================================== diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index 19051e3e0ba..29551c64879 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -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 diff --git a/setup.py b/setup.py index 8245aacefac..44da14d094d 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ 'lint': [ 'flake8>=3.5.0', 'isort', - 'mypy>=0.920', + 'mypy>=0.930', 'docutils-stubs', "types-typed-ast", "types-pkg_resources", diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index cb9af5f2895..338c87b7f99 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -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'), diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 6e1ad83b60c..22283d2336d 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -763,10 +763,11 @@ def process_doc(self, env: "BuildEnvironment", docname: str, document: nodes.doc 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 @@ def process_doc(self, env: "BuildEnvironment", docname: str, document: nodes.doc 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) diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 478db40e672..0b677cac44a 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -621,7 +621,7 @@ def traverse_toctree(parent: str, docname: str) -> Iterator[Tuple[str, str]]: 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: diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index aa929cafe2d..27fb475a276 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index a81f9deeba6..41a67c7774d 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 3a4cfa35aa3..cccff9abdac 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 6e99c7aa955..7d5c4b73ab6 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index b2613563474..d62ce30d1aa 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 7675942a1ba..e8363d5900f 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 80204f53c4f..8fe3692ae45 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 32c5a4f8b35..817b275a494 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 774a07f6730..f90e25d6903 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 80ce9475203..a71d111bf58 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 83dee9d7647..3c78e9dc237 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index c90e71a2714..8f7bdb16c66 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index b1badd1810a..84a1feba7ad 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 57bc1fd1234..35494b10345 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 2ec0bddfe71..2dbec3364fa 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index a421c530070..f121a26e4e6 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index e59ca647c34..4942ba0ab3f 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 6a7e07a5081..60b3323d80b 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 4943376adef..7c9bb18907b 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index cc57ad55e0b..5eb26a3dc5d 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 51cb0e70ba1..639f52c0332 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 158790c20e9..e59ae861baa 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 00ea0a02888..4c11a965a52 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index cc6b6e05f4c..470d49f6274 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 7d1e6d23a6c..b5c2aed5c29 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 6d06c8cc5d3..af2fe699975 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 0f6d3a8fb56..e99be27f306 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index befed8a9674..5b6ac2bcdb5 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 61fc467f56b..9b7933f6b30 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 10432fdd226..efbebf31bcd 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 69c8bb9b454..00bd13c86d2 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 7daf26d14ba..e1517ba81c3 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -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 \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 \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" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 1c480e1a03f..7309466c694 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index e1a461f945c..b2f04d9b673 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 3918e869bfd..831c0545caf 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index ee35fc89609..abf80c1afc6 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index fcafe354378..0bc6719a906 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index eea61065d30..8846548d8e7 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 52ceca38ad3..d08f9f5971a 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 62e7d7ff38d..87898e12feb 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 4410363e2a3..62f71c76e3f 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 269a73e9537..7f5871760f3 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 677dbece380..63aee654002 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -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 \n" "Language-Team: LANGUAGE \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 "" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 0ba41d10aed..f876b5b9135 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 49e0ebed501..185c8e65469 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index fbc24033048..17c23e2bc20 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 970ab3c96e8..e144df6d19a 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index cb2ade2e09a..64a9e299194 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 487cb808486..c6a638948b6 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 7f1dfb43383..bc604e46f40 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index be00762c827..5658aad8347 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 158c627060d..07134468120 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e88210d3554..b8224396d5c 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 5777c796fb7..0b1b7ef9578 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 5f52bb1e714..ad3d4d095e6 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 2e740153ffa..68c024d621d 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index e8bd80790ef..a230f1a7982 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index a02e19e9727..97d300cc1ab 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index d4c17aa8dd0..64a4cb8f2c8 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index bd4d39d7350..e323dec432a 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 0a4af63b983..4fbb63273ed 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -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 \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" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index 25e016ca7a9..ae30b37e7ea 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 3cac25bd642..fa89e5eb5b4 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index f630ad67e87..bc882f98b71 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index b52e7803f6f..da2294870b2 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -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 \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 "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 06bc18b5809..ca8ecbff4d8 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index c1eb6ff87fd..0b5f252dd3f 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -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 \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" diff --git a/sphinx/pycode/parser.py b/sphinx/pycode/parser.py index cad9a6e7176..6b566c4c496 100644 --- a/sphinx/pycode/parser.py +++ b/sphinx/pycode/parser.py @@ -312,6 +312,10 @@ def get_self(self) -> Optional[ast.arg]: """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 diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 4d89c79c3e9..9beec4f2512 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -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)) diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index ae8fc25cfb5..ef36e3cf103 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -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): diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index da5f4c24123..bcf4e98b352 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -107,7 +107,7 @@ def __init__(self, document: nodes.document, builder: Builder) -> None: # 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: diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index dbd594f8384..f6af3e9af4a 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -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, "["], diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index 011c82f6aba..c464ea00841 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -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') diff --git a/tests/test_pycode.py b/tests/test_pycode.py index bbcc42a52f2..e0e0fdb1125 100644 --- a/tests/test_pycode.py +++ b/tests/test_pycode.py @@ -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} diff --git a/tests/test_util_logging.py b/tests/test_util_logging.py index b8a0ca2e200..057d38546d8 100644 --- a/tests/test_util_logging.py +++ b/tests/test_util_logging.py @@ -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')