From a9a9bd25632235911058779dec017f330c234164 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 17 Dec 2021 01:45:18 +0900 Subject: [PATCH 01/10] Fix #9979: Error level messages were displayed as warning messages --- CHANGES | 1 + sphinx/util/logging.py | 9 ++++++++- tests/test_util_logging.py | 10 +++++----- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 9d57f8349ab..63f7416a29f 100644 --- a/CHANGES +++ b/CHANGES @@ -51,6 +51,7 @@ 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 -------- 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/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') From 733ac6ed5fa75136b127766a7b08b1dbe67c9cb6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 18 Dec 2021 15:01:49 +0900 Subject: [PATCH 02/10] doc: Update explanation of autodoc_unqualified_typehints (ref: #9931) --- doc/usage/extensions/autodoc.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index dab09c92c5f..d775ddee8e8 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 From 2416cde19c6bfa8f12a2f52eba5ca8530ac69b0f Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 19 Dec 2021 00:12:31 +0000 Subject: [PATCH 03/10] Update message catalogs --- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80983 -> 80635 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 189 +++++++++--------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 48 ++--- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 2 +- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 187 +++++++++-------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41839 -> 41839 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 2 +- 67 files changed, 948 insertions(+), 1018 deletions(-) diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index aa929cafe2dad73aa01f0e5b50146c6ac8808542..27fb475a2767e288d3f2d4887481c1c72c17bb67 100644 GIT binary patch delta 28 kcmbPjKihu84qhfhqshB?)i?}|6buZk3=KEG;N2_;0Ele~0ssI2 delta 28 kcmbPjKihu84qhe$)5*Jd)i?}H6$}il42?Fw;N2_;0En*%2LJ#7 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 3a4cfa35aa3d6a6035339783444f3c5da1479b5a..cccff9abdac265ddf7871d0e7a92a717fd575b31 100644 GIT binary patch delta 21 dcmaDU^ipWUTviT4BLxEkD?`K0OIeRF0{~Ma2J`>` delta 21 dcmaDU^ipWUTviSPQw0M9D?_8rOIeRF0{~M%2KN8} 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 b2613563474d323bb7a0ed14777cd8c526f3e626..d62ce30d1aa380aa5c7997ab10c93d0ca49fc635 100644 GIT binary patch delta 18 ZcmZo@V{K?--QdwQS)qw\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 80204f53c4f7aba9e7450427021833c63eaa2c0e..8fe3692ae45253edea30b64343d671bffc351786 100644 GIT binary patch delta 13 Vcmcb?e1mzyhKU_~8}~^u0st$&1*iZ3 delta 19 acmcb?e1mzy1`Y#L1p@;sL!*s56c_\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 774a07f673028224cd68ffcfa75b874a64ec6064..f90e25d6903b73326a584e499d4ec1284c597f63 100644 GIT binary patch delta 25 gcmZo=X=Rzv!DMJOu}h7^&`80+z{=2Y;|^a&09@Ax4*&oF delta 25 gcmZo=X=Rzv!DL`Mu}h7^z*ND&z{=2Q;|^a&09_IX6aWAK 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 83dee9d7647331f56879584d4740961e15c28d31..3c78e9dc237bd66f79f1f292da00ca1d43f22b03 100644 GIT binary patch delta 28 jcmX@WcYtq$5et){(PR@AH4Z}~1p@;sL&MEUEcciIZWRYv delta 28 jcmX@WcYtq$5et)n>0}cYH4Xz)1p@;sL!-?}EcciIZdV6h 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 b1badd1810a54ce7cc9ffb3fc4e8bd385e9da3c6..84a1feba7ad5dc845efdbec6b9d88e4dd0a84057 100644 GIT binary patch delta 30 lcmX@t$#kxhX+xS1lcCY%3?DTPLn8$P11m$r&C`4=EC8X{33C7d delta 30 lcmX@t$#kxhX+xS1lY!~v3?DTP15*V911m$L&C`4=EC8Y!33vbi 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 2ec0bddfe71befd1ed92263279598b1267386110..2dbec3364fa43515308bc625219db85d6fe0d4c4 100644 GIT binary patch delta 28 kcmaDL_CRdI88#+Eqsiyk)Hn={6buZk3=KE`VM}2F0FX@y1poj5 delta 28 kcmaDL_CRdI88#*Z)5+)9)Hn=G6$}il42?GbVM}2F0FaLf3IG5A 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 e59ca647c34e996f0e6ac0f124c51a524dd8f79d..4942ba0ab3f1a6dbbb8aecdeda78eebb173631b1 100644 GIT binary patch delta 13 UcmZo*X<(VKVPXg0#(hqV03+oEA^-pY delta 19 acmZo*X<(VKfy2O5!N9=E&}ich4@LktJq3jT 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 4943376adef1051133e76bf254ae1219338aaab9..7c9bb18907b4f753c10309e18cdadf92dea405df 100644 GIT binary patch delta 28 kcmZ3YzC?Y)5iTY}qshm()Hn={6buZk3=KDb;o86f0EYPp^8f$< delta 28 kcmZ3YzC?Y)5iTYJ)5*uU)Hn=G6$}il42?E_;o86f0EasW_y7O^ 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 51cb0e70ba179cfb4b1e35da9c81c76bd376b0ad..639f52c0332c9dcc78a60300e4c05af626356346 100644 GIT binary patch delta 13 Vcmey*{GWNkhKU_~8}~Uf0st?y1|0wZ delta 19 acmey*{GWNk1`Y#L1p@;sL!*s5+!+B#^#*_d 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 00ea0a0288818c93e04ea310e621f53bc1d7caaf..4c11a965a52552e00d7f73c2c1b2b0821f3239a9 100644 GIT binary patch delta 23 fcmeCV%iMF9dBdqT4nrda0|P5V!_Al4cBKOVbX5tA delta 23 fcmeCV%iMF9dBdqT4g*sK0|P5Vqs^DvcBKOVbaDxg 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 7d1e6d23a6c5ff3b2c684223823862388cfab584..b5c2aed5c299f7789d4bff203cddd4f07df9f309 100644 GIT binary patch delta 16 YcmX@hf0lm(Bg^EQ%zT^qS@tml05i`8asU7T delta 21 ccmX@hf0lm(BMXOtse*xlm7&pQPL?Cg075JUe*gdg 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 0f6d3a8fb561ed3aa68d58ca387f4b8973b8097c..e99be27f3061d2d20f9f1b149263d69230f5a8f0 100644 GIT binary patch delta 16 XcmX?TdeC%(z2IbVLB7qtf+d^)G@b=S delta 21 ccmX?TdeC%(yyse*xlm7&pQcfl%7081nW1poj5 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 61fc467f56bdb0619a019f5167918b913211cf29..9b7933f6b30736c6ed2d13d930d7cc6079778c6d 100644 GIT binary patch delta 16 YcmbQ~Hq&jxJAui^1o$@p5s(!E06@wH(f|Me delta 21 ccmbQ~Hq&jxI{^*@Qw0M9D?_8r-vpF}090QF\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 69c8bb9b454b4d8e0cfdca2f6addc6e2dabadf1d..00bd13c86d2537d41a4b30d4abc228779ab825cf 100644 GIT binary patch delta 12195 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 delta 12493 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\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 1c480e1a03f53b3808375bd4c934de1859e3b196..7309466c6940c8659f6017ea5724ba159d4b6e9e 100644 GIT binary patch delta 16 XcmbQ^Fvnp-yYS?AVZO~%h1+=mI7J2o delta 21 ccmbQ^Fvnp-yD*1=se*xlm7&q*e&Jpo08Hx!djJ3c 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 3918e869bfd7791a73cbe43b8524e9722cd5fd19..831c0545caf3a60bb8bf56007f7af4d79ea8005a 100644 GIT binary patch delta 16 XcmX@)cF1i*hUjDmQNGP(qGxykJ4*&j delta 21 ccmX@)cF1i*hA4-Dse*xlm7&q*0?|vn08#=5-v9sr 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 fcafe3543787f08d4549d31efc601d608470e84e..0bc6719a906fb866bff1252cc09002300efb4d47 100644 GIT binary patch delta 18 ZcmX@s#CWWUaYLf~WJ`Iz&H3`z6#+(@2K4{{ delta 23 ecmX@s#CWWUaYLd!hk>brfq|8w(dJC~yNUo`-3NvM 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 52ceca38ad33fa3fc7fe0f5120daa4980a8bd9be..d08f9f5971a123b7c8829669d6bce5e5c6c718f5 100644 GIT binary patch delta 18 acmX>yi{;2HmJLc%C;ytlx7lE-NCf~>@d#f4 delta 23 fcmX>yi{;2HmJLc%ISfn{3=FIcjW%mdm8t*$W(5bj 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 4410363e2a32259fd7bcd9cda313d7392691955c..62f71c76e3f546b02cb0add118e2a6e770a37497 100644 GIT binary patch delta 16 XcmeyM^+9VxJnv+4UcSw_yv!T`I++D- delta 21 ccmeyM^+9VxJTHfVse*xlm7&q*bY4yl08%do6951J 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 0ba41d10aedb4ef0b1296e70a24f5757897975da..f876b5b913581df62569e78f0fbb56a9d2818d2f 100644 GIT binary patch delta 16 YcmX@$dBAhSSE0#gh4?lz3-1*K07JV5;Q#;t delta 21 dcmX@$dBAhSS0N4qQw0M9D?_8re}xVU0svgt2kHO- 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 fbc2403304868a1f214b04bdb965b89b774f81c9..17c23e2bc20b054729533e7bd1fd6e56a46c4457 100644 GIT binary patch delta 13 VcmX@Za)xEXhKU_~8~61w0st$W1_l5C delta 19 bcmX@Za)xEX1`Y#L1p@;sL!*s5rZ55kLWKrt 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 cb2ade2e09abd42ac233a643f519af399b2e7032..64a9e2991947d7d4f3abaa8dcd81a3ed5362a0a8 100644 GIT binary patch delta 28 kcmdmFy2*6IPXQ)FqshMo)Hn={6buZk3=KDH3U+b=0FsRew*UYD delta 28 kcmdmFy2*6IPXQ(a)5*UD)Hn=G6$}il42?Ex3U+b=0FuuLyZ`_I 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 7f1dfb43383252fad59b620a615552f1c97163e5..bc604e46f40e768521184cd728f21e507a4ca259 100644 GIT binary patch delta 13 Vcmey)@||VEy@}iSHooa*1OPIv2IBw# delta 19 bcmey)@||VEJq`m?1p@;sL!*t)CNcs5OPL24 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 158c627060d479ee41121ac1fa4fea4e008c302a..071344681208d191a2a57f1b25d2cdd37ce08546 100644 GIT binary patch delta 13 Vcmeyw{E2zOhKU_~8~2$o0st;!1@-^{ delta 19 acmeyw{E2zO1`Y#L1p@;sL!*s5tQY}D2L@RH 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 5777c796fb7d7e30a3457cd237faabc6d76dd214..0b1b7ef95781f18e2261fd142dc70a7a902b1339 100644 GIT binary patch delta 16 XcmeA-?Kj;Z#yj~P58q}L-fUg~GOh(v delta 21 ccmeA-?Kj;Z#>-(~s$gJXWoWcnj<=8(06)qFLI3~& 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 2e740153ffa79f36bcfe189927239ff3335c4daa..68c024d621d48e3144744850ddf22cf9427c6e9b 100644 GIT binary patch delta 13 Vcmeys{DFDGhKU_~8}}J80st;A1@Hg> delta 19 acmeys{DFDG1`Y#L1p@;sL!*s5EEoYsy9QGL 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 a02e19e97277f13255de908fa32592ba3986e26a..97d300cc1ab72c30fbcc900dc5f459d6ea5861c3 100644 GIT binary patch delta 13 Vcmeys{DFDGhKU_~8}}J80st;A1@Hg> delta 19 acmeys{DFDG1`Y#L1p@;sL!*s5EEoYsy9QGL 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 bd4d39d73508802f51dd17c5c3d2f8ca8edd0984..e323dec432a334fa782849f6bc27fd4cbe28b302 100644 GIT binary patch delta 30 mcmezPp84Z@<_)TonGB64t4~(rFf>vyFt9Q-+#EW2P6`0P=?f_U delta 30 mcmezPp84Z@<_)TonG8%Pt4~(rFfdgxFt9Q-+8jE0P6`0QD+?|F 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 25e016ca7a9ee34a446c56b5d1b6a3ea075eedfb..ae30b37e7ea3aa6b76e5c34eaafe20592b32dd18 100644 GIT binary patch delta 13 Vcmeyz{EvCUhKU_~8}~Ud0st?Y1{weW delta 19 acmeyz{EvCU1`Y#L1p@;sL!*s5+!z5!&jx(} 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 f630ad67e8759ad91cf5760f3aad433bcb50b641..bc882f98b71c5a6770a9e16147adf9d3701465f1 100644 GIT binary patch delta 25 gcmeBW>1CPF!DMJOu}h7^&`80+z{=2Y1CPF!DL`Mu}h7^z*ND&z{=2Q\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 06bc18b580949013f9444b24f4cd18c66a03461a..ca8ecbff4d810af6a7a65820aee2be0c18a40ad9 100644 GIT binary patch delta 18 acmaEVjOqO`rVUpTC$CB5+x#f8*AW0?MhV6M delta 23 fcmaEVjOqO`rVUpTISfn{3=FIcjW*v&oa_hye)kEY 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" From a87d0359c01972c8a3eb01b7ff887399626efae3 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 12:41:04 +0900 Subject: [PATCH 04/10] Close #9961: html: Support nested HTML elements in other HTML builders --- CHANGES | 1 + sphinx/builders/html/transforms.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 9d57f8349ab..ebe3aba0759 100644 --- a/CHANGES +++ b/CHANGES @@ -22,6 +22,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 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'), From e7e08d2a784d1e87aded58186bff776d6de42213 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 18 Dec 2021 15:22:10 +0900 Subject: [PATCH 05/10] Fix #9968: autodoc: ivars are not shown if __init__ has posonlyargs --- CHANGES | 2 ++ sphinx/pycode/parser.py | 4 ++++ tests/test_pycode.py | 15 +++++++++++++++ 3 files changed, 21 insertions(+) diff --git a/CHANGES b/CHANGES index 9d57f8349ab..309d9bff8dc 100644 --- a/CHANGES +++ b/CHANGES @@ -41,6 +41,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 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/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} From 5cf55d1c901ca49481d7bf4021190b1ff737956d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 17:38:16 +0900 Subject: [PATCH 06/10] Bump to 4.3.2 final --- CHANGES | 19 ++----------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/CHANGES b/CHANGES index f642906c556..9f4d12ae9bd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,17 +1,5 @@ -Release 4.3.2 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 4.3.2 (released Dec 19, 2021) +===================================== Bugs fixed ---------- @@ -19,9 +7,6 @@ Bugs fixed * #9917: C and C++, parse fundamental types no matter the order of simple type specifiers. -Testing --------- - Release 4.3.1 (released Nov 28, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index f719d701e57..8d90f733a81 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,7 +27,7 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.3.2+' +__version__ = '4.3.2' __released__ = '4.3.2' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 3, 2, 'beta', 0) +version_info = (4, 3, 2, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From bbee8e16b732887fefb17d34afc0243fa6610ab9 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 17:39:23 +0900 Subject: [PATCH 07/10] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 9f4d12ae9bd..23acd1d014b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 4.3.3 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 4.3.2 (released Dec 19, 2021) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 8d90f733a81..83bbad8379b 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -27,8 +27,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '4.3.2' -__released__ = '4.3.2' # used when Sphinx builds its own docs +__version__ = '4.3.3+' +__released__ = '4.3.3' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -38,7 +38,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (4, 3, 2, 'final', 0) +version_info = (4, 3, 3, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From 627d73a683c749a85019ead70f8f147e24b4a124 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 19 Dec 2021 18:15:56 +0900 Subject: [PATCH 08/10] test: Remove debug print --- tests/test_domain_py.py | 1 - 1 file changed, 1 deletion(-) 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, "["], From e3ee8b378a37958f48d97d74a5c264f1f02e153e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 21 Dec 2021 02:51:59 +0900 Subject: [PATCH 09/10] Close #9993: std domain: Allow to refer an inline target via ref role --- CHANGES | 2 ++ sphinx/domains/std.py | 8 +++++--- tests/test_domain_std.py | 9 +++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index d34034f8ca2..f18e78cd633 100644 --- a/CHANGES +++ b/CHANGES @@ -30,6 +30,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 diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 7660f84c9b9..d08c65668e6 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -770,10 +770,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'): @@ -781,7 +782,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/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') From 565152301fb2b771f52c40926c37ce6b1713d09a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 24 Dec 2021 00:15:11 +0900 Subject: [PATCH 10/10] Fix mypy violations (with mypy-0.930) --- setup.py | 2 +- sphinx/environment/__init__.py | 2 +- sphinx/util/inspect.py | 12 ++++++------ sphinx/writers/manpage.py | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) 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/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/util/inspect.py b/sphinx/util/inspect.py index 8a735b4808a..c67369e8935 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -134,7 +134,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): @@ -692,7 +692,7 @@ def signature(subject: Callable, bound_method: bool = False, follow_wrapped: boo # # 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) @@ -820,14 +820,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, @@ -837,7 +837,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, @@ -849,7 +849,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/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: