diff --git a/CHANGES b/CHANGES index 2dc01faf8e7..cca11712e01 100644 --- a/CHANGES +++ b/CHANGES @@ -24,6 +24,8 @@ Bugs fixed ---------- * #10133: autodoc: Crashed when mocked module is used for type annotation +* #10146: autodoc: :confval:`autodoc_default_options` does not support + ``no-value`` option * #9529: LaTeX: named auto numbered footnote (ex. ``[#named]``) that is referred multiple times was rendered to a question mark * #10122: sphinx-build: make.bat does not check the installation of sphinx-build @@ -50,6 +52,9 @@ Features added Bugs fixed ---------- +* #9876: autodoc: Failed to document an imported class that is built from native + binary module + Testing -------- diff --git a/doc/development/theming.rst b/doc/development/theming.rst index 08cd3712110..ed87f72e3a9 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -88,8 +88,8 @@ Python :mod:`ConfigParser` module) and has the following structure: Distribute your theme as a Python package ----------------------------------------- -As a way to distribute your theme, you can use Python package. Python package -brings to users easy setting up ways. +As a way to distribute your theme, you can use a Python package. This makes it +easier for users to set up your theme. To distribute your theme as a Python package, please define an entry point called ``sphinx.html_themes`` in your ``setup.py`` file, and write a ``setup()`` diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index dfb08e688e7..24351993df3 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -528,7 +528,8 @@ There are also config values that you can set: The supported options are ``'members'``, ``'member-order'``, ``'undoc-members'``, ``'private-members'``, ``'special-members'``, ``'inherited-members'``, ``'show-inheritance'``, ``'ignore-module-all'``, - ``'imported-members'``, ``'exclude-members'`` and ``'class-doc-from'``. + ``'imported-members'``, ``'exclude-members'``, ``'class-doc-from'`` and + ``'no-value'``. .. versionadded:: 1.8 @@ -541,6 +542,9 @@ There are also config values that you can set: .. versionchanged:: 4.1 Added ``'class-doc-from'``. + .. versionchanged:: 4.5 + Added ``'no-value'``. + .. confval:: autodoc_docstring_signature Functions imported from C modules cannot be introspected, and therefore the diff --git a/doc/usage/restructuredtext/basics.rst b/doc/usage/restructuredtext/basics.rst index 16cfc6109f7..c846dc145f6 100644 --- a/doc/usage/restructuredtext/basics.rst +++ b/doc/usage/restructuredtext/basics.rst @@ -245,10 +245,10 @@ follow: * ``#`` with overline, for parts * ``*`` with overline, for chapters -* ``=``, for sections -* ``-``, for subsections -* ``^``, for subsubsections -* ``"``, for paragraphs +* ``=`` for sections +* ``-`` for subsections +* ``^`` for subsubsections +* ``"`` for paragraphs Of course, you are free to use your own marker characters (see the reST documentation), and use a deeper nesting level, but keep in mind that most diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 8a86f05b1af..a6d36f61fdc 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1001,7 +1001,8 @@ class ModuleDocumenter(Documenter): 'platform': identity, 'deprecated': bool_option, 'member-order': member_order_option, 'exclude-members': exclude_members_option, 'private-members': members_option, 'special-members': members_option, - 'imported-members': bool_option, 'ignore-module-all': bool_option + 'imported-members': bool_option, 'ignore-module-all': bool_option, + 'no-value': bool_option, } def __init__(self, *args: Any) -> None: @@ -1771,9 +1772,12 @@ def get_variable_comment(self) -> Optional[List[str]]: def add_content(self, more_content: Optional[StringList], no_docstring: bool = False ) -> None: if self.doc_as_attr and self.modname != self.get_real_modname(): - # override analyzer to obtain doccomment around its definition. - self.analyzer = ModuleAnalyzer.for_module(self.modname) - self.analyzer.analyze() + try: + # override analyzer to obtain doccomment around its definition. + self.analyzer = ModuleAnalyzer.for_module(self.modname) + self.analyzer.analyze() + except PycodeError: + pass if self.doc_as_attr and not self.get_variable_comment(): try: diff --git a/sphinx/ext/autodoc/directive.py b/sphinx/ext/autodoc/directive.py index 8b8048f8a92..0c040e1ef36 100644 --- a/sphinx/ext/autodoc/directive.py +++ b/sphinx/ext/autodoc/directive.py @@ -30,7 +30,7 @@ AUTODOC_DEFAULT_OPTIONS = ['members', 'undoc-members', 'inherited-members', 'show-inheritance', 'private-members', 'special-members', 'ignore-module-all', 'exclude-members', 'member-order', - 'imported-members', 'class-doc-from'] + 'imported-members', 'class-doc-from', 'no-value'] AUTODOC_EXTENDABLE_OPTIONS = ['members', 'private-members', 'special-members', 'exclude-members'] diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index a9baddae765..1970295a1c5 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 36fb7e45b7d..21c81daf594 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index f4104698bb3..90f9de61352 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index cb394e52139..4fe81f32f9a 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index be77cd00729..974e36b40fc 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 3497e711334..bf743e3ba1e 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "এই শিরোনামের পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "এই সংজ্ঞার পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 8db037bedf2..57a987206f3 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index ca531cc030a..0fdd0465cf5 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "Canvis a la API de C" msgid "Other changes" msgstr "Altres canvis" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link permanent a aquest títol" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanent a aquesta definició" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 381c183a880..4595fd3f917 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 5fb7ca2db97..66635364a23 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index c89af3ae875..66ed3bf441f 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 0705d6072ec..574044657e0 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Trvalý odkaz na tuto definici" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permalink k této tabulce" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permalink k tomuto kódu" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permalink k tomuto obrázku" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 1d31be2aec8..0814ffd3de1 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 9c0c2fb5f34..5059c22d8d7 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "Newidiadau i'r C-API" msgid "Other changes" msgstr "Newidiadau arall" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Permalink i'r pennawd hwn" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink i'r diffiniad hwn" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Cuddio Canlyniadau Chwilio" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permalink i'r tabl hwn" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permalink i'r cod hwn" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permalink i'r ddelwedd hon" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Permalink i'r toctree hwn" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index d8f32c0b6ea..c6a3382e56a 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 7a94c37d08a..03e50d6f714 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "Ændringer i C-API" msgid "Other changes" msgstr "Andre ændringer" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Permalink til denne overskrift" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink til denne definition" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Skjul søgeresultater" @@ -3597,37 +3597,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permahenvisning til denne tabel" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permahenvisning til denne kode" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permahenvisning til dette billede" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Permahenvisning til dette toctree" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 6eecfb99150..508e6dde4ce 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 01968c0d12f..90fffec5a34 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "C API-Änderungen" msgid "Other changes" msgstr "Andere Änderungen" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link zu dieser Überschrift" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link zu dieser Definition" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" @@ -3597,37 +3597,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Link zu dieser Tabelle" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Link zu diesem Quellcode" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Link zu diesem Bild" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Permanenter Link zu diesem Inhaltsverzeichnis" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 04b931b7a50..26956cdc4c6 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index e08be221111..ce588d6d2b7 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -2617,7 +2617,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3408,19 +3408,19 @@ msgstr "Αλλαγές στο API της C" msgid "Other changes" msgstr "Άλλες αλλαγές" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" @@ -3596,37 +3596,37 @@ msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έ msgid "default role %s not found" msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "δεν έχει καθοριστεί numfig_format για το %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Κανένα ID δεν έχει ανατεθεί στο κόμβο %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί." diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index d3e7413a62c..75524d07554 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index dd8a278c334..b936c4aed07 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 4713b05dee8..9f8f4e836c1 100644 Binary files a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 30c8fdec590..a7bb506b6fb 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 86df2967e40..63ffd2a8e9a 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index c5dc247d4ed..0fa1a9382b8 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 3564db3a888..e9fffa9a08a 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 97847a56df2..2e3d52f01a3 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 37bb0fc5c3d..81028b94f7d 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 058921209f1..bd89cafe85e 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -2621,7 +2621,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== duraciones de lectura más lentas =======================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3412,19 +3412,19 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Enlazar permanentemente con este título" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Enlazar permanentemente con esta definición" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" @@ -3600,37 +3600,37 @@ msgstr "excepción al evaluar solamente la expresión directiva: %s" msgid "default role %s not found" msgstr "rol por defecto %s no encontrado" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format no está definido para %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Cualquier ID no asignado para el nodo %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Enlace permanente a esta tabla" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Enlace permanente a este código fuente" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Enlace permanente a esta imagen" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Enlace permanente a la tabla de contenidos" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "No se pudo obtener el tamaño de la imagen. La opción :scale: se ignora." diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 0119129652d..2b001efbbcc 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index d204ff31cc7..d42d4158637 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 09:11+0000\n" "Last-Translator: Ivar Smolin \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "C API muutused" msgid "Other changes" msgstr "Ülejäänud muutused" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Püsiviit sellele pealkirjale" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Püsiviit sellele definitsioonile" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Varja otsingu tulemused" @@ -3597,37 +3597,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Püsiviit sellele tabelile" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Püsiviit sellele programmikoodile" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Püsiviit sellele pildile" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Püsiviit sellele sisukorrapuule" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 4fbe69dc16c..841214247d2 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index e93e3a36427..81e28367aa6 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "C API aldaketak" msgid "Other changes" msgstr "Beste aldaketak" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Goiburu honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Definizio honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 177b5bfe483..ba72759c25d 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 32f899bc581..2ac35918144 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== کند ترین زمان خواندن =======================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "C API تغییرات" msgid "Other changes" msgstr "دگر تغییرات" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "پیوند ثابت به این سر مقاله" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "پیوند ثابت به این تعریف" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" @@ -3597,37 +3597,37 @@ msgstr "ایراد در هنگام ارزیابی تنها عبارت دستور msgid "default role %s not found" msgstr "نقش پیش‌فرض %s یافت نشد" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "قالب عدد شکل برای %s تعریف نشده" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "هر کدام از شناسه‌هایی که به بست %s اختصاص داده نشده" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "پیوند ثابت به این اصطلاح" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "پیوند ثابت به این جدول" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "پیوند ثابت به این کد" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "پیوند ثابت به این تصویر" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "پیوند ثابت به این فهرست عنوان ها" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "امکان دست یابی به اندازه‌ی عکس نبود. گزینه‌ی تغییر اندازه :scale: نادیده گرفته می‌شود." diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index c831bc9cb62..122aaf09c9d 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 08ee91c23ce..6c0d3af89ea 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Piilota löydetyt" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index e2aacbb7eda..921d9ad4e2e 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 30cc77ce97f..e5c041f474a 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -2641,7 +2641,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== durées de lecture les plus lentes =======================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3432,19 +3432,19 @@ msgstr "Modifications de l'API C" msgid "Other changes" msgstr "Autres modifications" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Lien permanent vers ce titre" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Lien permanent vers cette définition" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Cacher les résultats de la recherche" @@ -3620,37 +3620,37 @@ msgstr "exception pendant l’évaluation de l'expression de la directive only : msgid "default role %s not found" msgstr "rôle par défaut %s introuvable" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format n'est pas défini %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Aucun ID assigné au node %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "Lien permanent vers ce terme" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Lien permanent vers ce tableau" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Lien permanent vers ce code" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Lien permanent vers cette image" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Lien permanent vers cette table des matières" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée." diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 438430e8c28..c6f585ba138 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 0c89e67f8a8..bc4d1238287 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index eba112167a1..a31d355fc7e 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index da34da4ebd6..1695f2c8f1d 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "שינויים אחרים" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "קישור קבוע לכותרת זו" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "קישור קבוע להגדרה זו" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 5f26ce1a458..6e634bac012 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 23df4db95a8..303f34cca7f 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "सी ऐ.पी.आई. परिवर्तन" msgid "Other changes" msgstr "अन्य परिवर्तन" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "इस शीर्ष-पंक्ति की स्थायी कड़ी" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "इस परिभाषा की स्थायी कड़ी" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "खोजे गए जोड़े छिपाएं" @@ -3597,37 +3597,37 @@ msgstr "केवल निर्देशक भाव का मूल्य msgid "default role %s not found" msgstr "मानक भूमिका '%s' नहीं मिली" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "%s के लिए नमफिग_फॉर्मेट नहीं बताया गया है" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "%s बिंदु के लिए कोई पहचान-चिन्ह नहीं दिया गया" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "इस सारणी की स्थायी कड़ी" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "इस निर्देश की स्थायी कड़ी" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "इस चित्र की स्थायी कड़ी" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "इस विषय-सूची-संरचना की स्थायी कड़ी" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है." diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index e354efb8f28..6fbf89088fe 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index c078f002651..9b1a32e1ed7 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index af84b23ade8..7c17ea11a28 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index daa6b1f61c4..b4effb3f0a1 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "C API promjene" msgid "Other changes" msgstr "Ostale promjene" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link na taj naslov" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link na tu definiciju" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Sakrij rezultate pretrage" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permalink na ovu tablicu" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permalink na ovaj kod" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permalink na ovu sliku" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Permalink na ovaj sadržaj" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index e0dcbb2df34..d827e0c1725 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index aea73dc5188..d7fde3ca007 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -2620,7 +2620,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3411,19 +3411,19 @@ msgstr "C API változások" msgid "Other changes" msgstr "Egyéb változások" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Hivatkozás erre a fejezetcímre" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Hivatkozás erre a definícióra" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" @@ -3599,37 +3599,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permalink erre a táblázatra" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permalink erre a kódrészletre" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permalink erre a képre" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index a40ead7ec5b..2db7ae528e4 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 839c03e2615..ab3e23f0517 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -2619,7 +2619,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3410,19 +3410,19 @@ msgstr "Perubahan API C" msgid "Other changes" msgstr "Perubahan lain" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link permanen untuk headline ini" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanen untuk definisi ini" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" @@ -3598,37 +3598,37 @@ msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" msgid "default role %s not found" msgstr "peran bawaan %s tidak ditemukan" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format tidak didefinisikan untuk %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Tidak ada ID apa pun yang ditugaskan untuk simpul %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Link permanen untuk table ini" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Link permanen untuk kode ini" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Link permanen untuk gambar ini" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Tautan ke daftar isi ini" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Tidak dapat memperoleh ukuran gambar. :scale: option diabaikan." diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index ade6d9364d1..e492dfc4445 100644 Binary files a/sphinx/locale/is/LC_MESSAGES/sphinx.mo and b/sphinx/locale/is/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 3386ec91c5e..2065ea66985 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Varanlegur hlekkur á þennan titil" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Varanlegur hlekkur á þessa skilgreiningu" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Fela leitarniðurstöður" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "Varanlegur hlekkur á þetta hugtak" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Varanlegur hlekkur á þessa töflu" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Varanlegur hlekkur á þennan kóða" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Varanlegur hlekkur á þessa mynd" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 89eb2bdfd67..a14f0f24243 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index b0d66c54d71..f0d17dc5952 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -2619,7 +2619,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3410,19 +3410,19 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link a questa intestazione" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link a questa definizione" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" @@ -3598,37 +3598,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Link a questa tabella" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Link a questo codice" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Link a questa immagine" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Link a questo indice" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 691dac53373..1a77646fbfd 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 01140609958..e2a1ffc58d1 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -2631,7 +2631,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最も遅い読み取り時間 =======================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3422,19 +3422,19 @@ msgstr "C API に関する変更" msgid "Other changes" msgstr "その他の変更" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "このヘッドラインへのパーマリンク" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "この定義へのパーマリンク" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "検索結果を隠す" @@ -3610,37 +3610,37 @@ msgstr "only ディレクティブの条件式の評価中に例外が発生し msgid "default role %s not found" msgstr "デフォルトのロール %s が見つかりません" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "%s に numfig_format は定義されていません" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "いくつかの ID が %s ノードに割り当てられていません" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "この用語の解説へ" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "このテーブルへのパーマリンク" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "このコードへのパーマリンク" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "この画像へのパーマリンク" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "この目次へのパーマリンク" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 56405dfb6a9..55493af9c9b 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 73ca3382ea5..e062d847cdd 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-24 08:02+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 가장 느린 읽기 시간 =======================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "C API 변경 사항" msgid "Other changes" msgstr "다른 변경 사항" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "이 표제에 대한 퍼머링크" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "이 정의에 대한 퍼머링크" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "검색 일치 숨기기" @@ -3595,37 +3595,37 @@ msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" msgid "default role %s not found" msgstr "기본 역할 %s을(를) 찾을 수 없음" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format이 %s에 대해 정의되지 않음" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "%s 노드에 할당되지 않은 ID" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "이 용어에 대한 퍼머링크" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "이 표에 대한 퍼머링크" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "이 코드에 대한 퍼머링크" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "이 이미지에 대한 퍼머링크" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "이 목차에 대한 퍼머링크" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "이미지 크기를 얻어올 수 없습니다. :scale: 옵션을 무시합니다." diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index d9463fed98d..e3ea3dfeb11 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index a53b5dacc44..969879bd712 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "C API pakeitimai" msgid "Other changes" msgstr "Kiti pakeitimai" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Nuoroda į šią antraštę" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Nuoroda į šį apibrėžimą" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index d18ccaf5d1d..b50c5b2ad91 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index db16c59c368..e9f60b766e1 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "Izmaiņas iekš C API" msgid "Other changes" msgstr "Citas izmaiņas" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Pastāvīga norāde šo virsrakstu" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Pastāvīga norāde uz šo definīciju" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 3446f4f66ec..04d40b5355c 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 1d0d82cc031..7af3b40228a 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 5bb42f45589..6abe747d480 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 1975150fac6..14d64caa13d 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "Endringer i C API" msgid "Other changes" msgstr "Andre endringer" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Permalink til denne oversikten" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink til denne definisjonen" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Skjul søkeresultat" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index b34d5a2178f..3eb9897985f 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 298174a63f3..6176437cf32 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "यो शिर्षकको लागि पर्मालिन्क । " -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "यो अर्थको लागि पर्मालिन्क" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 00727be19b4..9a4c3e19e54 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 34990770e5e..c9f38960c0d 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -2621,7 +2621,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3412,19 +3412,19 @@ msgstr "Veranderingen in de C-API" msgid "Other changes" msgstr "Andere veranderingen" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Permalink naar deze titel" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink naar deze definitie" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" @@ -3600,37 +3600,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permalink naar deze tabel" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permalink naar deze broncode" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permallink naar deze afbeelding" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Permalink naar deze toctree" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 84d187c673d..ed124aefe61 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 52c116730de..0b269279b0e 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Stały odnośnik do tego nagłówka" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Stały odnośnik do tej definicji" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" @@ -3597,37 +3597,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Stały odnośnik do tej tabeli" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Stały odnośnik do tego bloku kodu" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Stały odnośnik do tego obrazu" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Stały odnośnik do tego spisu treści" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 17e42747997..28848145de7 100644 Binary files a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 29a3f3351fa..e60020506ac 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index e761c6243ec..0804c0829ac 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 7041c1b8c84..4c8bf881f9e 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 14:45+0000\n" "Last-Translator: Rafael Fontenelle \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -2620,7 +2620,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "=================== durações de leitura mais lentas ====================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3411,19 +3411,19 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" @@ -3599,37 +3599,37 @@ msgstr "exceção ao avaliar apenas a expressão da diretiva: %s" msgid "default role %s not found" msgstr "papel padrão %s não encontrado" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format não está definido para %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Quaisquer IDs não atribuídos ao nó %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "Link permanente para este termo" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Link Permanente para essa tabela" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Link Permanente para esse código" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Link Permanente para essa imagem" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Link permanente para esse \"toctree\"" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Não foi possível obter o tamanho da imagem. A opção :scale: foi ignorada." diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 25ecc4e278d..f68e0ad8275 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 13de2c72c8a..e6fdf67676c 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 9ff6f41541d..51e2326897d 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 3183331cc04..eb0df950252 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "Schimbări în API C" msgid "Other changes" msgstr "Alte schimbări" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Link permanent la acest titlu" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanent la această definiție" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Ascunde Rezultatele Căutării" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Link permanent la acest tabel" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Link permanent la acest cod" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Link permanent la această imagine" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Link permanent la acest cuprins" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index b63807ee3a7..0a23ed0bafa 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index abaefb5cca3..9772d2878bf 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -2620,7 +2620,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3411,19 +3411,19 @@ msgstr "Изменения в API C" msgid "Other changes" msgstr "Другие изменения" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Ссылка на этот заголовок" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Ссылка на это определение" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Снять выделение" @@ -3599,37 +3599,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Постоянная ссылка на таблицу" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Постоянная ссылка на код" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Постоянная ссылка на рисунок" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Постоянная ссылка на оглавление" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 10a9a71abda..03e34f88da8 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index ee9d988ee51..a2c172de730 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "C API වෙනස්කම්" msgid "Other changes" msgstr "වෙනත් වෙනස්කම්" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index d4b3ed202e7..4924df1b979 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index ac08ffaf8da..80ea8c176ee 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -2617,7 +2617,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3408,19 +3408,19 @@ msgstr "Zmeny API C" msgid "Other changes" msgstr "Ostatné zmeny" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Trvalý odkaz na túto definíciu" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Skryť výsledky hľadania" @@ -3596,37 +3596,37 @@ msgstr "" msgid "default role %s not found" msgstr "predvolená rola %s nenájdená" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "nie je definovaný numfig_format pre %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Žiadne ID nie je priradené uzlu %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "Trvalý odkaz na tento termín" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Trvalý odkaz na túto tabuľku" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Trvalý odkaz na tento kód" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Trvalý odkaz na tento obrázok" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Trvalý odkaz na tento strom obsahu" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Nemožno získať veľkosť obrázku. voľba :scale: je ignorovaná." diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index be8f255e6e8..e17c7f13b02 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 6a74ac27316..0b82a86ebda 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "C API spremembe" msgid "Other changes" msgstr "Ostale spremembe" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Povezava na naslov" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Povezava na to definicijo" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 401e215300d..dc221b5bccb 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.5.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2633,7 +2633,7 @@ msgstr "" msgid "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "hardcoded link %r could be replaced by an extlink (try using %r instead)" msgstr "" @@ -3425,19 +3425,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3612,37 +3612,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 39e98be65c1..21948513497 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 9c01f928551..fe8da1dcf8f 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 09:44+0000\n" "Last-Translator: Besnik Bleta \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "=================== kohëzgjatjet më të ngadalta të leximit ===================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "Ndryshime API C" msgid "Other changes" msgstr "Ndryshime të tjera" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Permalidhje te ky titull" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalidhje për te ky përkufizim" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Fshih Përputhje Kërkimi" @@ -3594,37 +3594,37 @@ msgstr "përjashtim teksa vlerësohej vetëm shprehje direktive: %s" msgid "default role %s not found" msgstr "s’u gjet rol parazgjedhje %s" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format s’është i përcaktuar për %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Çfarëdo ID-sh jo të përshoqëruara për nyjën %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "Permalidhje për te ky term" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Permalidhje te kjo tabelë" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Permalidhje te ky kod" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Permalidhje te kjo figurë" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Permalidhje te kjo toctree" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "S’u mor dot madhësi figure. Mundësia :scale: u shpërfill." diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 4494a120a57..5eba1293e63 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 72d1561d148..45d81e193c6 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -2616,7 +2616,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3407,19 +3407,19 @@ msgstr "" msgid "Other changes" msgstr "Друге измене" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3595,37 +3595,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 74dd57b5d18..05508fb2f3f 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index d70e7a18dfc..ba9bf9843db 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 36ab8ef15c0..76519ee1c7a 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 3d93043225d..80094c50571 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 88da8b312cd..d2cbda83d12 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index bca95bd2190..41a1faff028 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Permalink till denna rubrik" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink till denna definition" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Dölj Sökresultat" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index d19fa7c4d4f..bf470014e42 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index ac3eaa0824d..f9597d51a4f 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index ec5e565c9aa..d3620fbe901 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 1bfe6308aa0..2572ddbf383 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 236a8e3e4cf..6712076d475 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 069dfe1d726..c82fa644792 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -2618,7 +2618,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3409,19 +3409,19 @@ msgstr "C API'sindeki değişiklikler" msgid "Other changes" msgstr "Diğer değişiklikler" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Bu başlık için kalıcı bağlantı" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Bu tanım için kalıcı bağlantı" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Arama Eşleşmelerini Gizle" @@ -3597,37 +3597,37 @@ msgstr "" msgid "default role %s not found" msgstr "varsayılan rol %s bulunamadı" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "Bu tablonun kalıcı bağlantısı" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "Bu kodun kalıcı bağlantısı" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "Bu resmin kalıcı bağlantısı" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "Bu içindekiler tablosunun kalıcı bağlantısı" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 76cdc690a48..992d086ce8a 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 54d1e881aa5..27b93a00cd4 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "зміни C API" msgid "Other changes" msgstr "Інші зміни" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "Постійне посилання на цей заголовок" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Постійне посилання на це визначення" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 4e203fdf2d5..28b79767d94 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index d5fd0f6c9f1..c34d984f0be 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 7fc954ab7f9..32050de7ae5 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index eebfab68482..f972e225361 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -2615,7 +2615,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3406,19 +3406,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3594,37 +3594,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 872b145eb52..801629e6f96 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 34e90c9a000..17687609db6 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 9416c8b2d17..f9aabbe093d 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index cd7764521d9..8acbad34528 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 11:41+0000\n" "Last-Translator: Lu \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -2631,7 +2631,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "====================== 最长阅读时长 =======================" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3422,19 +3422,19 @@ msgstr "C API 更改" msgid "Other changes" msgstr "其他更改" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "永久链接至标题" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "永久链接至目标" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "隐藏搜索结果" @@ -3610,37 +3610,37 @@ msgstr "only 指令表达式求值时抛出异常:%s" msgid "default role %s not found" msgstr "默认角色 %s 未找到" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "未定义 %s 的 numfig_format" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "没有给 %s 节点分配 ID" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "永久链接至表格" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "永久链接至代码" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "永久链接至图片" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "永久链接至目录树" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "无法获取图像尺寸,已忽略 :scale: 选项。" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index 91ce3e63851..f4716fd437f 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 0267a9e92ac..ab1c6195bbb 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 40c807f6335..7aed77ff1aa 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index e0c774ca2c0..0c2060494a2 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -2614,7 +2614,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3405,19 +3405,19 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "" @@ -3593,37 +3593,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 8a9b7921483..0ca63419dfe 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 70f3fc0c589..2b2fa00408b 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-01-30 00:11+0000\n" +"POT-Creation-Date: 2022-02-06 00:13+0000\n" "PO-Revision-Date: 2022-01-23 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" @@ -2622,7 +2622,7 @@ msgid "" "====================== slowest reading durations =======================" msgstr "" -#: sphinx/ext/extlinks.py:76 +#: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" @@ -3413,19 +3413,19 @@ msgstr "C API 的變更" msgid "Other changes" msgstr "其他變更" -#: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 -#: sphinx/writers/html5.py:397 +#: sphinx/themes/basic/static/doctools.js:197 sphinx/writers/html.py:436 +#: sphinx/writers/html.py:441 sphinx/writers/html5.py:395 +#: sphinx/writers/html5.py:400 msgid "Permalink to this headline" msgstr "本標題的永久連結" -#: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/themes/basic/static/doctools.js:203 sphinx/writers/html.py:128 +#: sphinx/writers/html.py:137 sphinx/writers/html5.py:107 #: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "本定義的永久連結" -#: sphinx/themes/basic/static/doctools.js:238 +#: sphinx/themes/basic/static/doctools.js:236 msgid "Hide Search Matches" msgstr "隱藏符合搜尋" @@ -3601,37 +3601,37 @@ msgstr "在評估只有指令的運算式時發生例外: %s" msgid "default role %s not found" msgstr "預設角色 %s 未找到" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 +#: sphinx/writers/html.py:329 sphinx/writers/html5.py:308 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format 未被定義給 %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 +#: sphinx/writers/html.py:339 sphinx/writers/html5.py:318 #, python-format msgid "Any IDs not assigned for %s node" msgstr "任一個 ID 未被指定給 %s 節點" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 +#: sphinx/writers/html.py:413 sphinx/writers/html5.py:372 msgid "Permalink to this term" msgstr "本術語的永久連結" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 +#: sphinx/writers/html.py:445 sphinx/writers/html5.py:404 msgid "Permalink to this table" msgstr "本表格的永久連結" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:488 sphinx/writers/html5.py:447 msgid "Permalink to this code" msgstr "本原始碼的永久連結" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 +#: sphinx/writers/html.py:490 sphinx/writers/html5.py:449 msgid "Permalink to this image" msgstr "本圖片的永久連結" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 +#: sphinx/writers/html.py:492 sphinx/writers/html5.py:451 msgid "Permalink to this toctree" msgstr "本目錄的永久連結" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 +#: sphinx/writers/html.py:624 sphinx/writers/html5.py:572 msgid "Could not obtain image size. :scale: option is ignored." msgstr "無法取得圖片大小。 :scale: 選項已略過。" diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index 34e76403fc4..34b73a0a5c3 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -8,7 +8,6 @@ :license: BSD, see LICENSE for details. """ -import copy import os import posixpath import re @@ -54,11 +53,8 @@ def multiply_length(length: str, scale: int) -> str: class HTMLWriter(Writer): - # override embed-stylesheet default value to 0. - settings_spec = copy.deepcopy(Writer.settings_spec) - for _setting in settings_spec[2]: - if '--embed-stylesheet' in _setting[1]: - _setting[2]['default'] = 0 + # override embed-stylesheet default value to False. + settings_default_overrides = {"embed_stylesheet": False} def __init__(self, builder: "StandaloneHTMLBuilder") -> None: super().__init__() diff --git a/tests/test_ext_autodoc_autoattribute.py b/tests/test_ext_autodoc_autoattribute.py index 9502b3c5220..fec4da4632f 100644 --- a/tests/test_ext_autodoc_autoattribute.py +++ b/tests/test_ext_autodoc_autoattribute.py @@ -32,7 +32,7 @@ def test_autoattribute(app): @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autoattribute_novalue(app): - options = {'no-value': True} + options = {'no-value': None} actual = do_autodoc(app, 'attribute', 'target.Class.attr', options) assert list(actual) == [ '', diff --git a/tests/test_ext_autodoc_autodata.py b/tests/test_ext_autodoc_autodata.py index 9fbfaaf39df..7d6d9eb30b7 100644 --- a/tests/test_ext_autodoc_autodata.py +++ b/tests/test_ext_autodoc_autodata.py @@ -32,7 +32,7 @@ def test_autodata(app): @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodata_novalue(app): - options = {'no-value': True} + options = {'no-value': None} actual = do_autodoc(app, 'data', 'target.integer', options) assert list(actual) == [ '',