From eaefbef1eb67065797f19565a2033de0c0136e7b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 30 Jan 2022 23:51:19 +0900 Subject: [PATCH 01/10] Fix #9876: autodoc: ocument a class on binary module --- CHANGES | 3 +++ sphinx/ext/autodoc/__init__.py | 9 ++++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3c2ec0537af..446b75b05f4 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #9876: autodoc: Failed to document an imported class that is built from native + binary module + Testing -------- diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 8a86f05b1af..e3b96c52278 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1771,9 +1771,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: From b0b51cecc27be0ead1b9fb46a7d5bd17d36fef8a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 31 Jan 2022 01:38:12 +0900 Subject: [PATCH 02/10] Close #10146: autodoc: autodoc_default_options does not support `no-value` option --- CHANGES | 2 ++ doc/usage/extensions/autodoc.rst | 6 +++++- sphinx/ext/autodoc/__init__.py | 3 ++- sphinx/ext/autodoc/directive.py | 2 +- tests/test_ext_autodoc_autoattribute.py | 2 +- tests/test_ext_autodoc_autodata.py | 2 +- 6 files changed, 12 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index a1b2479a3c0..44faffea9e5 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 * #10122: sphinx-build: make.bat does not check the installation of sphinx-build command before showing help diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index dfb08e688e7..3849f4713a0 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 ``'class-doc-from'``. + .. confval:: autodoc_docstring_signature Functions imported from C modules cannot be introspected, and therefore the diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 8a86f05b1af..0e88d914c4d 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: 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/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) == [ '', From 25c4287da5c841afe1d923a9cb4c14841b691387 Mon Sep 17 00:00:00 2001 From: Noah Sprent <39567418+noahsprent@users.noreply.github.com> Date: Wed, 2 Feb 2022 10:52:06 +0100 Subject: [PATCH 03/10] Remove commas when describing characters for section headings --- doc/usage/restructuredtext/basics.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 From b84ba3a7d13142361c91cb27c03d4c1002ba849f Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 5 Feb 2022 00:18:29 +0000 Subject: [PATCH 04/10] Use `settings_default_overrides` --- sphinx/writers/html.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index 34e76403fc4..afb21825e96 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -54,11 +54,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__() From 5d14bbf169dc6428db683c8d151bbab78f70a4b3 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 5 Feb 2022 00:46:00 +0000 Subject: [PATCH 05/10] Appease flake8 --- sphinx/writers/html.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index afb21825e96..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 From 9ab02f04e1c8d37cac6db730cb9a085f445a219c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 5 Feb 2022 21:48:41 +0900 Subject: [PATCH 06/10] CI: Test with Windows Server 2019 In nearly days, `windows-latest` image on GHA was changed to Windows Server 2022. That causes build errors on building a cython script. To avoid the problem, this pins the image for testing on GHA to Windows Server 2019. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d9a21f501c5..c831277039b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,7 +60,7 @@ jobs: if: matrix.coverage windows: - runs-on: windows-latest + runs-on: windows-2019 strategy: matrix: architecture: [x86, x64] From d31f61db63b01e8d1564e7b208ee1bd93d0b4bda Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 6 Feb 2022 00:13:25 +0000 Subject: [PATCH 07/10] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70297 -> 70297 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 34124 -> 34124 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 100906 -> 100906 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 76037 -> 76037 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 86012 -> 86012 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84272 -> 84272 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19643 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81445 -> 81445 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sphinx.pot | 32 +++++++++--------- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78804 -> 78804 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 65239 -> 65239 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 32 +++++++++--------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 32 +++++++++--------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41670 -> 41670 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 32 +++++++++--------- 125 files changed, 1008 insertions(+), 1008 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index a9baddae765e16885633c26232bb9895a7280afd..1970295a1c56d47ad85e4f89d3d5aaa19db5d1ce 100644 GIT binary patch delta 23 ecmZp)YqZ;-Ai!m$Yhb2eU|?lvyje@&Iv)T_Ck7q> delta 23 ecmZp)YqZ;-Ai!m)YiyukU|?lvxLHf!Iv)T^>joGA 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 f4104698bb3879ca59d70619fb4d0ec00cd944e1..90f9de61352dbc7049a249a0bd11d3966f4f299f 100644 GIT binary patch delta 21 ccmey${FQk^8<&x;ftiAVft8{0#tEs608my2n*aa+ delta 21 ccmey${FQk^8<(N3v4Mhtft8`*#tEs608k(Xl>h($ 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 be77cd00729a41b6e251dbeb41787964f3288b4b..974e36b40fc76e467ff80be62a9603f5ec370d39 100644 GIT binary patch delta 23 fcmbPjKihu8HeN0xT>~=(0|P5V\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 8db037bedf22d758f665d8d2114aeaecefbb9f30..57a987206f30387e96c7c67c6e23c01df81861f5 100644 GIT binary patch delta 23 ecmbQMGgoKBLS8N-T>~=(0|P5V\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 381c183a880d44e39cc1bc182e82886ce69861ff..4595fd3f917bc77fe23e9dc1922acb96f07c856e 100644 GIT binary patch delta 23 ecmaDU^ipU;F)Npmu7R0?fq|8w@#b3AH_QNBGzTyM delta 23 ecmaDU^ipU;F)Np$uCalFfq|8w;pSS_H_QNA_y;Ng 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 c89af3ae875fd33d3598a07dcb586c0da16a19bc..66ed3bf441f71b03cc16e4263c90bcd3ede04705 100644 GIT binary patch delta 23 ecmbQ^G{\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 1d31be2aec870cbbac7b2ffa3a128a0dcc6f8db6..0814ffd3de12adc0a41ab799e7366a9466f81562 100644 GIT binary patch delta 23 ecmbPZG{\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 d8f32c0b6eaa0f585faee65df0ea52563b515171..c6a3382e56ab9464bf8da9b2321b066fa2a37a5f 100644 GIT binary patch delta 22 dcmdm)u`^?Xz5\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 6eecfb991509d8f1ce647a0e695df15f5d37d541..508e6dde4cefd5194eb679923d9f940933613956 100644 GIT binary patch delta 23 fcmZ1)xioUaVks^oT>~=(0|P5V\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 04b931b7a5055ac56585da54ecfbb623512ec23d..26956cdc4c672c1ab8c95d2bdc17e7047b07ec2e 100644 GIT binary patch delta 25 gcmZo@V{K?--5}S*Wu$9hreI)TWoW!vqv^&00AwZzNdN!< delta 25 gcmZo@V{K?--5}S*WvFXxpkQENWoWorqv^&00AuP1LjV8( 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 d3e7413a62cc66f4815f1970b8aa99d79920b1d5..75524d0755495963c77583ff48a0d42b0f204a03 100644 GIT binary patch delta 21 ccmcb?e1myH8<&x;ftiAVft8{0#t9yb085kxL;wH) delta 21 ccmcb?e1myH8<(N3v4Mhtft8`*#t9yb083s5J^%m! 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 4713b05dee8a2c1ac0fd6e0e13d59b0b5a53b8d1..9f8f4e836c1e931d49346dee631925bc5c6a1118 100644 GIT binary patch delta 21 ccmeBT>0+7C#$}{yV5VSTU}b2$aY7X%06*>p+yDRo delta 21 ccmeBT>0+7C#$~8$Y@lFZU}b2yaY7X%06(||)&Kwi 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 86df2967e40007ed0ea470f567dad2b60a36aee3..63ffd2a8e9abdc6ff0c2fffb37f3b1247dc7590c 100644 GIT binary patch delta 21 ccmZo=X=Rzv#$}{yV5VSTU}b2$aY89006!cB%>V!Z delta 21 ccmZo=X=Rzv#$~8$Y@lFZU}b2yaY89006yjg#{d8T 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 3564db3a888d272ca1ea9cd161a5d56783b354ed..e9fffa9a08a4e18a8de3915c2a156b7baccae26c 100644 GIT binary patch delta 23 ecmX@WcYtq$0SlLru7R0?fq|8w@n$O)Hf8`!-UVm? delta 23 ecmX@WcYtq$0SlL*uCalFfq|8w;btoqHf8`!q6K0A 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 37bb0fc5c3dabb47a1ae787ad6f0546b6eac2d80..81028b94f7d7ac2a5f6bc918f84b7cd0c4409c73 100644 GIT binary patch delta 25 hcmbQalx5~pmJNF*aT)0vm?;<-SQ#2`J~rucJpg=;3C#ci delta 25 hcmbQalx5~pmJNF*aT)3w8z>kUSQ#2_J~rucJpg=C3C92c 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 0119129652d6164be68e25b92ec2c2beb5b87c28..2b001efbbcc5493482d6b2fb0f7f9dd48e0a471a 100644 GIT binary patch delta 25 gcmX@p#dM~NX~PyDE+bt7GX(\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 4fbe69dc16c66a7bb1057d19e7a7138eb3d1db07..841214247d2066dad21862e11f43fd7db195f019 100644 GIT binary patch delta 23 ecmexw^50}bpa7SVu7R0?fq|8w@#bg&6)pf__Xe>5 delta 23 ecmexw^50}bpa7SluCalFfq|8w;pS)o6)pf_y9TQO 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 177b5bfe48386101fbbf1e9eff8c4a48947dcf80..ba72759c25d2798afa6eb13ae4e85c6b9514724a 100644 GIT binary patch delta 25 hcmZ2Ag>BUowhg7rxr}rT%oGd^tPG7e*DqiF2mpAa38(-7 delta 25 hcmZ2Ag>BUowhg7rxeRrU4HOIvtPBk|*DqiF2mp9z38DZ1 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 c831bc9cb62b514445a05d9867be4f00b0bc133e..122aaf09c9d46fb45f1b4abd7a56fb072d1460a5 100644 GIT binary patch delta 23 ecmaDL_CRdIDK;)6T>~=(0|P5V\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 e2aacbb7eda0c384244ef6477e81976c6e396109..921d9ad4e2e11556ad95476b7aafa66547966716 100644 GIT binary patch delta 25 hcmZp@#L{|+WrN9VE+bt7GX(k#6 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 438430e8c2833f534057ea2966be26c897fad6e8..c6f585ba138586d2cda2a8f82c1785ca34804835 100644 GIT binary patch delta 21 ccmZo*X<(Vq#$}{yV5VSTU}b2$aY6wj06t0uz5oCK delta 21 ccmZo*X<(Vq#$~8$Y@lFZU}b2yaY6wj06r82xBvhE 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 eba112167a14eb2e577744ab16c2a8737a7e1237..a31d355fc7ec7284e09dffc515b5318342a8b46b 100644 GIT binary patch delta 23 fcmZ3YzC?Y)AucW>T>~=(0|P5V delta 23 fcmZ3YzC?Y)AucXMU1I|U0|P5V!_8;7Zg2nqTA2r9 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 5f26ce1a45890439dab30c449cd2d075a6486e18..6e634bac0123746dc831d81f1fb49f40c0df3f97 100644 GIT binary patch delta 25 gcmaFZ&i1gKZ39~;myxc4nSz0Vm7(!wfzFG+0Ce>UAOHXW delta 25 gcmaFZ&i1gKZ39~;m!Yn)fr5d7m7(EgfzFG+0Cc$t8UO$Q 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 e354efb8f28b64d8741d29a3733447f37f050571..6fbf89088feaa50d7c1b8170f281591f4040df38 100644 GIT binary patch delta 21 ccmey*{GWM38<&x;ftiAVft8{0#tHe108#n|xc~qF delta 21 ccmey*{GWM38<(N3v4Mhtft8`*#tHe108zvSvj6}9 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 af84b23ade87f878e1be6fff345a2da243bf433c..7c17ea11a28e1ecb3a86fa21d1355bfb22ec0a31 100644 GIT binary patch delta 25 gcmaFX&iJgIaf7x7myxc4nSz0Vm7(!wQ;m(%0B?i`sQ>@~ delta 25 gcmaFX&iJgIaf7x7m!Yn)fr5d7m7(EgQ;m(%0B=YKqW}N^ 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 e0dcbb2df34674dd218929576f4d8fb8c3367aef..d827e0c1725eabb5f28072e4692314367f63ceb1 100644 GIT binary patch delta 23 ecmewt{V#gMUMVgkT>~=(0|P5V\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 a40ead7ec5b9c949cb9fc6843333939fb6eb6d12..2db7ae528e4937fc9d782d295ccc472601403b3b 100644 GIT binary patch delta 25 hcmeCV%iMF9dBcJ>E+bt7GX(E<;^o0|f&ED?`K0tJ)r=0|0\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 ade6d9364d12b4592f39a979f65ecaa5f832aae5..e492dfc4445c98e1da334a4c318e4ffa57e2e84c 100644 GIT binary patch delta 23 ecmaDY`C4*ADLa>uu7R0?fq|8w@#cE=9995b2nNgm delta 23 ecmaDY`C4*ADLa>;uCalFfq|8w;pTew9995a%m&5) 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 89eb2bdfd67b29ba40d917e03d3010ad2cc6184f..a14f0f24243a7feb376315d8c8be05d383dbde07 100644 GIT binary patch delta 23 ecmaFq|I&Yhs|1&ku7R0?fq|8w@n(OCS^NNFCI>D6 delta 23 ecmaFq|I&Yhs|1&!uCalFfq|8w;bwn{S^NNE>IWzQ 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 691dac53373c7daabca86c9d9cc8795e9beb4039..1a77646fbfd1103d51d8edd445e83a1c2811b7ba 100644 GIT binary patch delta 25 hcmew}pY_jt)(smMaT)0vm?;<-SQ#2`-o40iEdY%$3NHWv delta 25 hcmew}pY_jt)(smMaT)3w8z>kUSQ#2_-o40iEdY%43Ml{p 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 56405dfb6a95697a9b36b8dfbc9d0d898730a241..55493af9c9b69f99f71fa5e938276cc370793462 100644 GIT binary patch delta 25 fcmdlmiFE@I%~{Q5q-$WNU|?WnXuNsZ>aMu}d|L^g delta 25 fcmdlmiFE@I%~{Q5sB3JXU|?WnXt;UV>aMu}d>;vz 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 d9463fed98d43f4f632193713e003d0415699759..e3ea3dfeb11ab30ef8460cd070d7fea8c321d712 100644 GIT binary patch delta 23 ecmexk{>Oa7J^?NxT>~=(0|P5VOa7J^?O6U1I|U0|P5V!_6lIOt=ASGzXRd 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 d18ccaf5d1dfa60888a0b0016d100cd892b180fd..b50c5b2ad91b53c9e403d4aa5f04195c8c60552c 100644 GIT binary patch delta 23 ecmca\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 3446f4f66ece08fdbb51c1ae75c3bbedd04d0c80..04d40b5355c8bfa5913c5c9d1a580eff56277707 100644 GIT binary patch delta 23 fcmX@hf0lp4b!ILjT>~=(0|P5V\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 5bb42f45589c6c8e5ffd09d0d87ff792f69f54b0..6abe747d480bc2f994c8e0a68545a6799873a9a9 100644 GIT binary patch delta 23 ecmX?TdeC%(s34b-u7R0?fq|8w@n(6!MVtUrU\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 b34d5a2178f22b172f5b461242cd69457c2f2c4e..3eb9897985f42f5f4348063a64fbe778ca1886f5 100644 GIT binary patch delta 23 ecmbQ~Hq&jx5dkhET>~=(0|P5V\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 00727be19b46e37f9a777750a96cf3d44b4dfa5f..9a4c3e19e54e276c2686293e0799cc0ad0777af9 100644 GIT binary patch delta 25 gcmdlzlX3S<#tp7ITt>PEW(o!dR))r#{dIB_0Bq0)a{vGU delta 25 gcmdlzlX3S<#tp7IT!y;F1_}lSR)&U~{dIB_0Bn>8Z2$lO 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 84d187c673dedb5625cf1f4f343073715280a63f..ed124aefe61f34dde4071deb0f3fca6d6dbaa4c9 100644 GIT binary patch delta 25 hcmaF)lJVtB#trgLTt>PEW(o!dR))r#HJuI^0RV!42(\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 17e427479974325cc45d89c94c95c5497a3052a2..28848145de7b82283fc6c9ecea4fe4dd89cfdb1e 100644 GIT binary patch delta 21 ccmeyy{Ec}+8<&x;ftiAVft8{0#tCVR08oGio&W#< delta 21 ccmeyy{Ec}+8<(N3v4Mhtft8`*#tCVR08mN>m;e9( 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 e761c6243ecde35c6b6c7c3642d581bb30f22a9a..0804c0829ac181deee79bc0b5a4c49258825fbba 100644 GIT binary patch delta 25 hcmZ4bhh^y>mJM@Oa~bIxm?;<-SQ#2`Ubeb^5&(>>3Pb<^ delta 25 hcmZ4bhh^y>mJM@Oa~bLy8z>kUSQ#2_Ubeb^5&(>F3O)b; 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 25ecc4e278db3501c1202b0a3d5b82f91d18f2ba..f68e0ad8275cb9d3f2dbe9fa00a551666ab802c2 100644 GIT binary patch delta 23 ecmbQ^Fvnp-tT306u7R0?fq|8w@#b{ltvmo#QwFpE delta 23 ecmbQ^Fvnp-tT30MuCalFfq|8w;pTMVtvmo#7Y42X 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 9ff6f41541d915c0347259ea0ef70442a8374b21..51e2326897d09df013a4e088227646ad96c2c7a1 100644 GIT binary patch delta 23 ecmX@)cF1jmohX-)u7R0?fq|8w@n#RvU%UWX;0G80 delta 23 ecmX@)cF1jmohX-~uCalFfq|8w;bsrfU%UWXqz4iJ 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 b63807ee3a76c4ba15a1557f937f1e5d95348bb9..0a23ed0bafa978d9dc9f3fb25eefa09427e0c01e 100644 GIT binary patch delta 25 gcmX@s#CWWUaf7)$myxc4nSz0Vm7(!wM|oBy0B6PqzyJUM delta 25 gcmX@s#CWWUaf7)$m!Yn)fr5d7m7(EgM|oBy0B4E@x&QzG 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 10a9a71abdaf23dbfd28aa485110237704a8f6c9..03e34f88da8a740e87ea703e057e2656c4562313 100644 GIT binary patch delta 23 ecmeB|>6h8CmyOFv*T77{z`)ATc=K^K4|V`kj0T1P delta 23 ecmeB|>6h8CmyOF%*VsV8z`)ATaPx6C4|V`kPzHbi 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 d4b3ed202e706c72353ca00f7f2b97874996fdaa..4924df1b979d9750d3a1a761d74d688f052e5c7b 100644 GIT binary patch delta 25 hcmX>yi{;2HmJL6qa2e?um?;<-SQ#2`W}50$0RV!o2=V{` delta 25 hcmX>yi{;2HmJL6qa2e_v8z>kUSQ#2_W}50$0RVz>2\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 be8f255e6e85ea4c5cb78b75f10f1524a15d9148..e17c7f13b022405d66e29f47e06b84924d7f7a9f 100644 GIT binary patch delta 23 ecmeyM^+9WcDKD3iu7R0?fq|8w@n(BoLk<92GX_im delta 23 ecmeyM^+9WcDKD3yuCalFfq|8w;bwbYLk<91_Xb7) 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 39e98be65c12df0097c3c5374ae430327286505a..219485134976c719be7b7bfc8e73feaca4bd07b5 100644 GIT binary patch delta 25 hcmcceoaM@MmJM?ja~bIxm?;<-SQ#2`Uba|o0sxR$3KakV delta 25 hcmcceoaM@MmJM?ja~bLy8z>kUSQ#2_Uba|o0sxR43J(AP 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 4494a120a57c92403bfb947b7acf76b0fe91981b..5eba1293e638607d05ec7e7fb460481098ddf9e8 100644 GIT binary patch delta 23 fcmX@$dBAhSX(28nT>~=(0|P5V\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 74dd57b5d1895afa912d7934eab1d5a9856ba102..05508fb2f3f7321638638d8595aeba190a4ebfaf 100644 GIT binary patch delta 21 ccmcb}a*<_18<&x;ftiAVft8{0#t8=*0ZWtyu>b%7 delta 21 ccmcb}a*<_18<(N3v4Mhtft8`*#t8=*0ZU#6s{jB1 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 36ab8ef15c088292a2f8240fa38cad11317b037c..76519ee1c7ad2ddd14263030c4d010409a60b28e 100644 GIT binary patch delta 21 ccmX@Za)xC>8<&x;ftiAVft8{0#tC~E0ZPIKq5uE@ delta 21 ccmX@Za)xC>8<(N3v4Mhtft8`*#tC~E0ZNPpoB#j- 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 88da8b312cd4d5b94608a25053fe13f0c65dd0fa..d2cbda83d1252e1e259dee4bfdeda51eab2d60ee 100644 GIT binary patch delta 23 ecmdmFy2*6IcL6RVT>~=(0|P5V8#w`B2?p!{ 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 d19fa7c4d4f0eecafc023a25f6061f6065d9fbb6..bf470014e421beb5cf1015c04b71606d587384c1 100644 GIT binary patch delta 21 dcmey)@||VE7A_-Q12Y8!11m%0jr(>o0svIr2T=e3 delta 21 dcmey)@||VE7A`|wV*>>P11m$rjr(>o0svH~2TK3| 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 ec5e565c9aaa222c80bc535f7798e48d35905658..d3620fbe901c2cd6a88a0ad1ad37fb96716e7fd6 100644 GIT binary patch delta 21 ccmeyw{E2x&8<&x;ftiAVft8{0#tBJ`08iKkk^lez delta 21 ccmeyw{E2x&8<(N3v4Mhtft8`*#tBJ`08gR@i~s-t 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 236a8e3e4cf5fb0e0d69e8bcc8c159ba80ae720d..6712076d47561c96661208d1d6c3d14cd910c979 100644 GIT binary patch delta 25 gcmbPsih0^8<_%o6Tt>PEW(o!dR))r#MQWKc0B^1bnE(I) delta 25 gcmbPsih0^8<_%o6T!y;F1_}lSR)&U~MQWKc0B>>!lK=n! 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 76cdc690a489fe4dbd4c5febff162d5b9fa0b470..992d086ce8a62422c304a05aa33b3dc227b1c98d 100644 GIT binary patch delta 23 ecmeA-?Kj=\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 4e203fdf2d59d6e3655109019b836d53ab25b988..28b79767d9499f59d37b536c6296b7b6dd35b4d1 100644 GIT binary patch delta 21 ccmeys{DFBw8<&x;ftiAVft8{0#t8|G08fMli~s-t delta 21 ccmeys{DFBw8<(N3v4Mhtft8`*#t8|G08dT^h5!Hn 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 7fc954ab7f99ca2c20324b4339657597da65fe65..32050de7ae5c9eef6acd6a117f48ff8c78a977d5 100644 GIT binary patch delta 23 fcmX@7cTR7^d|oaiT>~=(0|P5V\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 872b145eb524c9d274784dcfd00d7ec563980ea3..801629e6f96748f9dbd1bb24e809bfae18f4877b 100644 GIT binary patch delta 21 ccmeys{DFBw8<&x;ftiAVft8{0#t8|G08fMli~s-t delta 21 ccmeys{DFBw8<(N3v4Mhtft8`*#t8|G08dT^h5!Hn 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 9416c8b2d172dd7d0ef992d884e02f8338e47849..f9aabbe093de0b9bf2fb31f570b23ece13eb6d22 100644 GIT binary patch delta 25 hcmccqm-+f%<_#v(xr}rT%oGd^tPG7e+fARD4giZ~37-G} delta 25 hcmccqm-+f%<_#v(xeRrU4HOIvtPBk|+fARD4giZO37G%@ 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 91ce3e638516fcc805f220339001a68c2f05b66b..f4716fd437f3733f194a3691265380b0bd60a27b 100644 GIT binary patch delta 21 ccmeyz{EvA;8<&x;ftiAVft8{0#tC_h08!8ewg3PC delta 21 ccmeyz{EvA;8<(N3v4Mhtft8`*#tC_h08yF-umAu6 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 40c807f6335bf9e0bdf5e5409264e9715ed2dc4c..7aed77ff1aa6bece81393cf663aeae145cdb6b56 100644 GIT binary patch delta 21 ccmeBW>1CPF#$}{yV5VSTU}b2$aY8L406=U71CPF#$~8$Y@lFZU}b2yaY8L406;bc-v9sr 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 8a9b792148382bb89c8c60ba1d33253dc1a2cf1c..0ca63419dfe35ae360827fb45de49a1573ccb869 100644 GIT binary patch delta 25 gcmX?hlPEW(o!dR))r#eG@Ak0ebHUcK`qY delta 25 gcmX?hl\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: 選項已略過。" From 7469096e0a48d6445204c7c39be5fba7b3524a9e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 6 Feb 2022 15:30:54 +0900 Subject: [PATCH 08/10] Update doc/usage/extensions/autodoc.rst --- doc/usage/extensions/autodoc.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index 3849f4713a0..24351993df3 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -543,7 +543,7 @@ There are also config values that you can set: Added ``'class-doc-from'``. .. versionchanged:: 4.5 - Added ``'class-doc-from'``. + Added ``'no-value'``. .. confval:: autodoc_docstring_signature From 03c8ceb85f766340e54837cbbfb50df7b6d03ac7 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Tue, 8 Feb 2022 13:05:18 +0000 Subject: [PATCH 09/10] improve grammar in theming.rst --- doc/development/theming.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index 08cd3712110..dae48bede83 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 setup 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()`` From bcb0a03f92da576e77127df1e7d88a9db04e2362 Mon Sep 17 00:00:00 2001 From: Daniel Townsend Date: Thu, 10 Feb 2022 17:44:18 +0000 Subject: [PATCH 10/10] setup -> set up --- doc/development/theming.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index dae48bede83..ed87f72e3a9 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -89,7 +89,7 @@ Distribute your theme as a Python package ----------------------------------------- As a way to distribute your theme, you can use a Python package. This makes it -easier for users to setup your theme. +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()``