From b0ae5480c5b3a2778bf6b9aef428b42c0e6d8ac9 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Tue, 10 May 2022 17:35:00 -0400 Subject: [PATCH 01/13] Epub: Add WebP mime type When building docs with WebP images using the EPUB builder results in this warning: `WARNING: unknown mimetype for _images/.webp, ignoring` This commit fixes this by adding the mapping for webp-files to the correct mime type. --- sphinx/builders/_epub_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 4bb602fe0..78d3d89a0 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -56,6 +56,7 @@ MEDIA_TYPES = { '.xhtml': 'application/xhtml+xml', '.css': 'text/css', '.png': 'image/png', + '.webp': 'image/webp', '.gif': 'image/gif', '.svg': 'image/svg+xml', '.jpg': 'image/jpeg', From 92fcac321be6598e22877465b3d60730aa24f1f1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 19:05:17 +0900 Subject: [PATCH 02/13] test: Add *args and **kwargs to testcase of target.typehints --- .../test-ext-autodoc/target/typehints.py | 4 ++- tests/test_ext_autodoc_configs.py | 36 +++++++++++++------ 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/tests/roots/test-ext-autodoc/target/typehints.py b/tests/roots/test-ext-autodoc/target/typehints.py index 6b0d6142c..4acfc8911 100644 --- a/tests/roots/test-ext-autodoc/target/typehints.py +++ b/tests/roots/test-ext-autodoc/target/typehints.py @@ -94,8 +94,10 @@ def missing_attr(c, class _ClassWithDocumentedInit: """Class docstring.""" - def __init__(self, x: int) -> None: + def __init__(self, x: int, *args: int, **kwargs: int) -> None: """Init docstring. :param x: Some integer + :param args: Some integer + :param kwargs: Some integer """ diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index fdb82b1b9..12ec0e022 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1034,22 +1034,30 @@ def test_autodoc_typehints_description_with_documented_init(app): ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) --\n' + ' * **x** (*int*) --\n' + '\n' + ' * **args** (*int*) --\n' + '\n' + ' * **kwargs** (*int*) --\n' '\n' ' Return type:\n' ' None\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' '\n' ' Return type:\n' ' None\n' == context) @@ -1066,16 +1074,20 @@ def test_autodoc_typehints_description_with_documented_init_no_undoc(app): ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' == context) + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' == context) @pytest.mark.sphinx('text', testroot='ext-autodoc', @@ -1092,16 +1104,20 @@ def test_autodoc_typehints_description_with_documented_init_no_undoc_doc_rtype(a ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' == context) + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' == context) @pytest.mark.sphinx('text', testroot='ext-autodoc', From 06a9139308c15058087040ddff0f2ca9a4335360 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 20:43:04 +0900 Subject: [PATCH 03/13] Fix #9648: autodoc: *args and **kwargs entries are duplicated In basic usage of autodoc (docstring), `args` and `kwargs` arguments are marked up without stars. But numpydoc style recommends to mark them up with stars. This adds support for starred arguments in docstrings to `autodoc_typehints` feature. --- CHANGES | 3 ++ sphinx/ext/autodoc/typehints.py | 20 +++++++-- tests/roots/test-ext-napoleon/conf.py | 5 +++ tests/roots/test-ext-napoleon/index.rst | 6 +++ .../test-ext-napoleon/mypackage/__init__.py | 0 .../test-ext-napoleon/mypackage/typehints.py | 11 +++++ tests/roots/test-ext-napoleon/typehints.rst | 5 +++ tests/test_ext_napoleon_docstring.py | 45 +++++++++++++++++++ 8 files changed, 92 insertions(+), 3 deletions(-) create mode 100644 tests/roots/test-ext-napoleon/conf.py create mode 100644 tests/roots/test-ext-napoleon/index.rst create mode 100644 tests/roots/test-ext-napoleon/mypackage/__init__.py create mode 100644 tests/roots/test-ext-napoleon/mypackage/typehints.py create mode 100644 tests/roots/test-ext-napoleon/typehints.rst diff --git a/CHANGES b/CHANGES index 424a12eaa..dfbd6bd53 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #9648: autodoc: ``*args`` and ``**kwargs`` entries are duplicated when + ``autodoc_typehints="description"`` + Testing -------- diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index 06768168e..b18107c84 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -111,7 +111,15 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No if name == 'return': continue - arg = arguments.get(name, {}) + if '*' + name in arguments: + name = '*' + name + arguments.get(name) + elif '**' + name in arguments: + name = '**' + name + arguments.get(name) + else: + arg = arguments.get(name, {}) + if not arg.get('type'): field = nodes.field() field += nodes.field_name('', 'type ' + name) @@ -159,13 +167,19 @@ def augment_descriptions_with_types( has_type.add('return') # Add 'type' for parameters with a description but no declared type. - for name in annotations: + for name, annotation in annotations.items(): if name in ('return', 'returns'): continue + + if '*' + name in has_description: + name = '*' + name + elif '**' + name in has_description: + name = '**' + name + if name in has_description and name not in has_type: field = nodes.field() field += nodes.field_name('', 'type ' + name) - field += nodes.field_body('', nodes.paragraph('', annotations[name])) + field += nodes.field_body('', nodes.paragraph('', annotation)) node += field # Add 'rtype' if 'return' is present and 'rtype' isn't. diff --git a/tests/roots/test-ext-napoleon/conf.py b/tests/roots/test-ext-napoleon/conf.py new file mode 100644 index 000000000..502fb5a9d --- /dev/null +++ b/tests/roots/test-ext-napoleon/conf.py @@ -0,0 +1,5 @@ +import os +import sys + +sys.path.insert(0, os.path.abspath('.')) +extensions = ['sphinx.ext.napoleon'] diff --git a/tests/roots/test-ext-napoleon/index.rst b/tests/roots/test-ext-napoleon/index.rst new file mode 100644 index 000000000..4c013b75b --- /dev/null +++ b/tests/roots/test-ext-napoleon/index.rst @@ -0,0 +1,6 @@ +test-ext-napoleon +================= + +.. toctree:: + + typehints diff --git a/tests/roots/test-ext-napoleon/mypackage/__init__.py b/tests/roots/test-ext-napoleon/mypackage/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/roots/test-ext-napoleon/mypackage/typehints.py b/tests/roots/test-ext-napoleon/mypackage/typehints.py new file mode 100644 index 000000000..526b78e40 --- /dev/null +++ b/tests/roots/test-ext-napoleon/mypackage/typehints.py @@ -0,0 +1,11 @@ +def hello(x: int, *args: int, **kwargs: int) -> None: + """ + Parameters + ---------- + x + X + *args + Additional arguments. + **kwargs + Extra arguments. + """ diff --git a/tests/roots/test-ext-napoleon/typehints.rst b/tests/roots/test-ext-napoleon/typehints.rst new file mode 100644 index 000000000..43c61f6d2 --- /dev/null +++ b/tests/roots/test-ext-napoleon/typehints.rst @@ -0,0 +1,5 @@ +typehints +========= + +.. automodule:: mypackage.typehints + :members: diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index bdf50f516..6db897932 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -2593,3 +2593,48 @@ Sample class with PEP 526 annotations and numpy docstring """ print(actual) assert expected == actual + + +@pytest.mark.sphinx('text', testroot='ext-napoleon', + confoverrides={'autodoc_typehints': 'description', + 'autodoc_typehints_description_target': 'all'}) +def test_napoleon_and_autodoc_typehints_description_all(app, status, warning): + app.build() + content = (app.outdir / 'typehints.txt').read_text(encoding='utf-8') + assert content == ( + 'typehints\n' + '*********\n' + '\n' + 'mypackage.typehints.hello(x, *args, **kwargs)\n' + '\n' + ' Parameters:\n' + ' * **x** (*int*) -- X\n' + '\n' + ' * ***args** (*int*) -- Additional arguments.\n' + '\n' + ' * ****kwargs** (*int*) -- Extra arguments.\n' + '\n' + ' Return type:\n' + ' None\n' + ) + + +@pytest.mark.sphinx('text', testroot='ext-napoleon', + confoverrides={'autodoc_typehints': 'description', + 'autodoc_typehints_description_target': 'documented_params'}) +def test_napoleon_and_autodoc_typehints_description_documented_params(app, status, warning): + app.build() + content = (app.outdir / 'typehints.txt').read_text(encoding='utf-8') + assert content == ( + 'typehints\n' + '*********\n' + '\n' + 'mypackage.typehints.hello(x, *args, **kwargs)\n' + '\n' + ' Parameters:\n' + ' * **x** (*int*) -- X\n' + '\n' + ' * ***args** (*int*) -- Additional arguments.\n' + '\n' + ' * ****kwargs** (*int*) -- Extra arguments.\n' + ) From 3e20ee68460f4e831b6bfd90f798372fbdef4a6a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 23:47:15 +0900 Subject: [PATCH 04/13] CI: Separate coverage task from main.yml --- .github/workflows/coverage.yml | 32 ++++++++++++++++++++++++++++++++ .github/workflows/main.yml | 29 ----------------------------- 2 files changed, 32 insertions(+), 29 deletions(-) create mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 000000000..12945f665 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,32 @@ +name: Coverage + +on: [push] + +jobs: + coverage: + runs-on: ubuntu-latest + if: github.repository_owner == 'sphinx-doc' + + steps: + - uses: actions/checkout@v3 + - name: Set up Python 3 + uses: actions/setup-python@v3 + with: + python-version: 3 + + - name: Check Python version + run: python --version + + - name: Install graphviz + run: sudo apt-get install graphviz + + - name: Install dependencies + run: python -m pip install -U pip tox pytest-cov + + - name: Run Tox + run: tox --sitepackages -e py -- -vv + env: + PYTEST_ADDOPTS: "--cov ./ --cov-append --cov-config setup.cfg" + + - name: codecov + uses: codecov/codecov-action@v3 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1debcaaf9..daa766c39 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,32 +56,3 @@ jobs: run: python -m pip install -U pip tox - name: Run Tox run: tox -e py -- -vv - - coverage: - # only run on pushes to branches in the sphinx-doc/sphinx repo - if: github.repository_owner == 'sphinx-doc' && github.event_name == 'push' - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3 - uses: actions/setup-python@v3 - with: - python-version: 3 - - - name: Check Python version - run: python --version - - - name: Install graphviz - run: sudo apt-get install graphviz - - - name: Install dependencies - run: python -m pip install -U pip tox pytest-cov - - - name: Run Tox - run: tox --sitepackages -e py -- -vv - env: - PYTEST_ADDOPTS: "--cov ./ --cov-append --cov-config setup.cfg" - - - name: codecov - uses: codecov/codecov-action@v3 From 6ffe881f55939d2ee3b67b0ace09e9255199ea60 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 15:45:32 +0200 Subject: [PATCH 05/13] Test for issue #10456: removing meta-fields Add two meta-fields to an appropriate test case. Currently the test fails, because of bug #10456. The next commit fixes the issue. --- tests/test_domain_py.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 61f595c23..014067e84 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -999,7 +999,9 @@ def test_info_field_list(app): text = (".. py:module:: example\n" ".. py:class:: Class\n" "\n" + " :meta blah: this meta-field must not show up in the toc-tree\n" " :param str name: blah blah\n" + " :meta another meta field:\n" " :param age: blah blah\n" " :type age: int\n" " :param items: blah blah\n" From d1ba8d598d3671a1b4c67d53b8cb34f0a6c1e9ad Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 15:51:37 +0200 Subject: [PATCH 06/13] fix #10456: fix sphinx.domain.python.filter_meta_fields() The function now removes all "meta"-fields from a field-list. --- sphinx/domains/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 8fc185325..a634a51d2 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -1068,11 +1068,11 @@ def filter_meta_fields(app: Sphinx, domain: str, objtype: str, content: Element) for node in content: if isinstance(node, nodes.field_list): fields = cast(List[nodes.field], node) - for field in fields: + # removing list items while iterating the list needs reversed() + for field in reversed(fields): field_name = cast(nodes.field_body, field[0]).astext().strip() if field_name == 'meta' or field_name.startswith('meta '): node.remove(field) - break class PythonModuleIndex(Index): From 534b8f7294aa53e1367501d1709a022f7dd62252 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 15:55:19 +0200 Subject: [PATCH 07/13] Update CHANGES for #10456 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index bc32362ae..8217432b4 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #10456: filter_meta_fields fails to remove more than one meta-field from a field_list + Testing -------- From 77eaad1ab2d4738455b9f44addcd78dd09b96fea Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 16:11:53 +0200 Subject: [PATCH 08/13] update CHANGES (line was too long) --- CHANGES | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 8217432b4..7d6c5f0dc 100644 --- a/CHANGES +++ b/CHANGES @@ -16,7 +16,7 @@ Features added Bugs fixed ---------- -* #10456: filter_meta_fields fails to remove more than one meta-field from a field_list +* #10456: filter_meta_fields fails to remove more than one meta-field Testing -------- @@ -213,7 +213,7 @@ Bugs fixed * #9924: LaTeX: multi-line :rst:dir:`cpp:function` directive has big vertical spacing in Latexpdf * #10158: LaTeX: excessive whitespace since v4.4.0 for undocumented - variables/structure members + variables/structure members * #10175: LaTeX: named footnote reference is linked to an incorrect footnote if the name is also used in the different document * #10269: manpage: Failed to resolve the title of :ref: cross references @@ -1086,7 +1086,7 @@ Bugs fixed inside function type signatures * #8780: LaTeX: long words in narrow columns may not be hyphenated * #8788: LaTeX: ``\titleformat`` last argument in sphinx.sty should be - bracketed, not braced (and is anyhow not needed) + bracketed, not braced (and is anyhow not needed) * #8849: LaTex: code-block printed out of margin (see the opt-in LaTeX syntax boolean :ref:`verbatimforcewraps ` for use via the :ref:`'sphinxsetup' ` key of ``latex_elements``) From fcb54ae025431a8fc526f5056bfe99d6e8c545b6 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 16:38:24 +0200 Subject: [PATCH 09/13] update CHANGES again: revert unintended white-space changes --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 7d6c5f0dc..913e54bf4 100644 --- a/CHANGES +++ b/CHANGES @@ -213,7 +213,7 @@ Bugs fixed * #9924: LaTeX: multi-line :rst:dir:`cpp:function` directive has big vertical spacing in Latexpdf * #10158: LaTeX: excessive whitespace since v4.4.0 for undocumented - variables/structure members + variables/structure members * #10175: LaTeX: named footnote reference is linked to an incorrect footnote if the name is also used in the different document * #10269: manpage: Failed to resolve the title of :ref: cross references @@ -1086,7 +1086,7 @@ Bugs fixed inside function type signatures * #8780: LaTeX: long words in narrow columns may not be hyphenated * #8788: LaTeX: ``\titleformat`` last argument in sphinx.sty should be - bracketed, not braced (and is anyhow not needed) + bracketed, not braced (and is anyhow not needed) * #8849: LaTex: code-block printed out of margin (see the opt-in LaTeX syntax boolean :ref:`verbatimforcewraps ` for use via the :ref:`'sphinxsetup' ` key of ``latex_elements``) From c470402cfbeb14cf1c85b27437f7649ef0da61e5 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 22 May 2022 00:19:01 +0000 Subject: [PATCH 10/13] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7947 -> 7947 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 492 -> 492 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7976 -> 7976 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5587 -> 5587 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2424 -> 2424 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8265 -> 8265 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6214 -> 6214 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13160 -> 13160 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11216 -> 11216 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82357 -> 82357 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14119 -> 14119 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1864 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70066 -> 70066 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33950 -> 33950 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6727 -> 6727 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 100244 -> 100244 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 84850 -> 84850 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 503 -> 503 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4947 -> 4947 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 98993 -> 98993 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17189 -> 17189 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11533 -> 11533 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 60856 -> 60856 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3082 -> 3082 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10780 -> 10780 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 85498 -> 85498 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84645 -> 84645 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7104 -> 7104 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6786 -> 6786 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2011 -> 2011 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6766 -> 6766 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8869 -> 8869 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19426 -> 19426 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29699 -> 29699 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 493 -> 493 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81834 -> 81834 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 7984 -> 7984 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8822 -> 8822 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16427 -> 16427 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo | Bin 643 -> 643 bytes sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3602 -> 3602 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68704 -> 68704 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5417 -> 5417 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78356 -> 78356 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9426 -> 9426 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6754 -> 6754 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 647 -> 647 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58414 -> 58414 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6693 -> 6693 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5971 -> 5971 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 65047 -> 65047 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 14 +++++++------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 516 -> 516 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41261 -> 41261 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 14 +++++++------- 127 files changed, 244 insertions(+), 244 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 298c6c94302c3fc106f22627caef3ba5c9c180bf..a3f3ce429c4a44dd557c7901582bb5db1c7cf597 100644 GIT binary patch delta 21 ccmeCS>$cmVB*0;0q+noRWoWTkOW+|N079V!-~a#s delta 21 ccmeCS>$cmVB*0-{p, 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "تجهيز المستندات" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 8fcc8de8813aab020f63acd09c483230e00fc2bc..b7c1db47b309eb16413d5583ebd1c89473ca6428 100644 GIT binary patch delta 19 acmaFE{Dyf#2Zxc7f`NgRp~c1tF^m91;07cB delta 19 acmaFE{Dyf#2Zw=$f`NgRq4~xMF^m921qLSo diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 92ea33328..de0420f16 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index b2c16091e80b95f7bf4c0605150233ba52a47ce1..30dc9b19772ea136eb345d0c4770d1368595322f 100644 GIT binary patch delta 21 ccmZ2sx592iFE59Yk%EDNm7&Gvsl1Z~0Zz6Cp8x;= delta 21 ccmZ2sx592iFE59Ig@S>Bm7)3Osl1Z~0Z!fqq5uE@ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 4671ee048..5bde227b3 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 97c460ca73a550a27d7a03ba6f419ddef764357d..96f2d6e8e69f4442a5b131b2b0c0afe2ddef0e03 100644 GIT binary patch delta 21 ccmcbteOY@$1uut@k%EDNm7&Gv2Hs!}08noRTmS$7 delta 21 ccmcbteOY@$1uuu8se*xlm66Hj2Hs!}08n)XTL1t6 diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 95966b01b..c169b9368 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 60e76a8e37bfa36f32d023e96829c194f6a408e3..ddf592bc7ac1728c651569334cd11a6fbaf8fbdd 100644 GIT binary patch delta 21 ccmew%^h0PvDJzGOk%EDNm7&GvTGrpp08;=50RR91 delta 21 ccmew%^h0PvDJzG8g@S>Bm7)3OTGrpp08=Oj1ONa4 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 2b03e41ce..60c319221 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 3fe57c04282e2cf9bc779f64d9a5f79be0ed4d07..b1be6ebf3833575c360fcd26ef7dd8761bd13746 100644 GIT binary patch delta 21 dcmX@, 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index d18699b174bcb042a6035b1412d00b650619d1eb..1f858b6a31b82ff34ddb9b6988ca948b1b8cf658 100644 GIT binary patch delta 21 ccmX?RaLi!C7CsImBLxEkD?^LTd-%FI0aR87{r~^~ delta 21 ccmX?RaLi!C7CsIG3k3rMD?{_md-%FI0aShm0RR91 diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 1b1763d5c..2d37f0d95 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer , 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 1e4aaab7f16b4a6eafedd48266a1da0803a883b8..b7dd563db288f08f68e7049186b47651bf86724c 100644 GIT binary patch delta 21 dcmaEn_9AV=PI(R^BLxEkD?^LT2j!Ow0{~-$2mt^9 delta 21 dcmaEn_9AV=PI(SPQw0M9D, 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 86c0caa328422712a08b091c9a3dd5f9f6f9ae0e..0ce2b7f36c574b09aa00034c7416a855ef2ff5c8 100644 GIT binary patch delta 21 ccmcZ*ej$8=t`vunk%EDNm7&FEQ>od408%Cfg8%>k delta 21 ccmcZ*ej$8=t`vuXg@S>Bm7)1&Q>od408&l{h5!Hn diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 3fb0d362d..aff4cad52 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2018\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index a554522e59fdd7c280772278863410102331f9db..6dc5868d1401b2eab9aec5a48177f670ba40a42b 100644 GIT binary patch delta 23 fcmdnm%(}Iib;F8A4kIH40|P5Vi_IGvSq}gJX+Q{! delta 23 fcmdnm%(}Iib;F8A4ntD~0|P4~lg%3%Sq}gJX+{W( diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 96dd36648..c5891bc9a 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index c6da3de165d646fcbf5451d7e72b11c7aa1411f9..5f3754b9a4aee8a4764e18e3bc3d4ed4c1b2efd1 100644 GIT binary patch delta 19 acmX@de2#fS2Zxc7f`NgRp~c1tc8mZ&Yz4{y delta 19 acmX@de2#fS2Zy1lf`NgRk;%phc8mZ&a|Ou& diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index d6eb1a721..e184fc7db 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index e114d6aad23a1ca440286065d1d7bb7478bbe731..f068b23fa1c63ab413f70a50f80127fe4a91413a 100644 GIT binary patch delta 21 ccmZ3Uw>)pdbvX_rBLxEkD?^LT_vJh!09+XdZvX%Q delta 21 ccmZ3Uw>)pdbvX`0Qw0M9D> diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 4294e68bd..914b2be1f 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index fc69e2adc49eb7cd9a299f34da55c476f7d1d83d..df5a6469cd892d883934abbc1cf4eea66e59874b 100644 GIT binary patch delta 21 ccmX@XcY<$&5etWrk%EDNm7&FED;7Rx07Jk9Bme*a delta 21 ccmX@XcY<$&5etW*se*xlm66G2D;7Rx07J$FBLDyZ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index cbc9bf1a2..d7d8e1d9d 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tatsuro YOKOTA , 2021\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 1554dff91688265c28e8897ceac182d1911c0744..6e9c9dab3c8076fddc62f80047d8b8204a97d18a 100644 GIT binary patch delta 23 fcmdnAm}S#qmJM!`IE;)G3=FIcEjIg2N~s3`XTJzQ delta 23 fcmdnAm}S#qmJM!`I1DTl3=FIc%{Ti^N~s3`XXgk* diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 99d45697f..589a604c6 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016,2021\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -529,8 +529,8 @@ msgstr "una imagen adecuada para %s constructor no encontrado: %s" msgid "building [mo]: " msgstr "compilando [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "escribiendo salida... " @@ -617,16 +617,16 @@ msgstr "%sañadido, %s cambiado, %s removido" msgid "reading sources... " msgstr "leyendo fuentes..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "Esperando a los workers..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "preparando documentos" @@ -2965,7 +2965,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 788bd2c25a965f324bf01d70ea26ec13e0a681cc..411d90bfa5d8cd95ff726537bc8a589433dd23ce 100644 GIT binary patch delta 23 ecmbQ&$uzH%X@i{)hmnzjfq|8w#b!632nzsO00!{@ delta 23 ecmbQ&$uzH%X@i{)hk=EHfq|8w`DQnt2nzsOC, 2013-2022\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "väljundi kirjutamine... " @@ -614,16 +614,16 @@ msgstr "lisatud %s, muudetud %s, eemaldatud %s" msgid "reading sources... " msgstr "lähtefailide lugemine..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 8b71712a753faefac974b3349644be99eac7134b..97c633ca6951c01b4ebe9a32dc3167c7bf3d368a 100644 GIT binary patch delta 21 ccmX?Za@=Hth5(0=k%EDNm7&FE0|9X^07+#9f&c&j delta 21 ccmX?Za@=Hth5(0wg@S>Bm7)1&0|9X^07;Dng#Z8m diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index e19a8b173..4fd1ea489 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Asier Iturralde Sarasola , 2018\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 5752fad4ebd2d7991531dac63423719296ac0e0a..c3498948530934d1c586372c21c7bfde5a6838d0 100644 GIT binary patch delta 23 fcmbQz&o-r>Z9~^G4kIH40|P5Vi_MdkF+BtTW+e!a delta 23 fcmbQz&o-r>Z9~^G4ntD~0|P4~lg*QsF+BtTW-ADf diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 837dae42b..c170ee9ee 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F , 2020-2021\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index e706d40978a3ceb7b12ad5ba75b5b263de145030..bc9f9bbbdf8b8616dc26457bd92543d66e6f6113 100644 GIT binary patch delta 21 ccmaDL_CRdI88!|hBLxEkD?^LTSJ--309Dxs8vp, 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index df2096fb6b14ddcba7a4111ebebcd05e152ad794..a4cba10fc2c90362fba0a10c9b3508c3e1f4a436 100644 GIT binary patch delta 23 fcmew~jrG$s)(viJIE;)G3=FIcEjIhDQJD__as>#y delta 23 fcmew~jrG$s)(viJI1DTl3=FIc%{Tk4QJD__axDnI diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index b2b8fa1f9..c86d68a88 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2017-2019,2022\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -549,8 +549,8 @@ msgstr "l'image appropriée pour le constructeur %s n'a pas été trouvée : %s" msgid "building [mo]: " msgstr "Construction en cours [mo] : " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "Écriture... " @@ -637,16 +637,16 @@ msgstr "%s ajouté(s), %s modifié(s), %s supprimé(s)" msgid "reading sources... " msgstr "Lecture des sources... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "En attente des processus parallélisés..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "Document en préparation" @@ -2985,7 +2985,7 @@ msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "Invalide __slots__ trouvé sur %s. Ignoré." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Impossible d'analyser une valeur d'argument par défaut pour %r : %s" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index ca2f067c99dc83c6cae152d1da7d47f69167fc67..26b9e807930992b243ea0d752f32b47c98be7019 100644 GIT binary patch delta 19 acmey){GEA12Zxc7f`NgRp~c1t>5KqHf(AtZ delta 19 acmey){GEA12Zy1lf`NgRk;%ph>5KqHi3UUf diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index f34ffe9ef..78f182b1e 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 2519917fa33ee4dacabaa4a9ddd60afeef1d3858..f87a3646bd9679c6b890a968ee83aae5f00c0b1a 100644 GIT binary patch delta 21 dcmcbtc3Ex1OfC*1BLxEkD?^LT3%NFN002_W2JHX< delta 21 dcmcbtc3Ex1OfC)s3k3rMD?{_m3%NFN002_;2Jip? diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 7ce9fe443..9bc02e2d9 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2011\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index ce69c2aea31f7032a5c1b18a0a2bc7b180827f3f..900aeeafd0f7fae4911ac8e274308e0bc0d48826 100644 GIT binary patch delta 23 fcmdnk%C@nUZNr2P4kIH40|P5Vi_J4SB!2+_XblLq delta 23 fcmdnk%C@nUZNr2P4g(7X0|P5V^UX6lB!2+_Xf+7A diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index ccd0c6f75..96afd9a87 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Sumanjali Damarla , 2020\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -526,8 +526,8 @@ msgstr "%s निर्माता के लिए योग्य चित msgid "building [mo]: " msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "परिणाम लिखा जा रहा है..." @@ -614,16 +614,16 @@ msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया msgid "reading sources... " msgstr "स्रोतों को पढ़ा जा रहा है..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "कर्मियों की प्रतीक्षा हो रही है" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 6c891fa05a57424acbd6a3b57431ebd1306983d2..acfc3a256a470b0c481ac2a8a9cb05a76aa40c04 100644 GIT binary patch delta 19 acmeyy{Ec}+2Zxc7f`NgRp~c1tX^a3xTn0h_ delta 19 acmeyy{Ec}+2Zw=$f`NgRq4~xMX^a3xfd)kY diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 8d5ccd58d..a1e4df09a 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index f116e0833f7d8578216be03eb6aa3b490cf4aae4..e34ae5be174a3089c787a5e4976ed8c9806c8680 100644 GIT binary patch delta 23 ecmZ45#<;YNal=-14kIH40|P5Vi_Lr0Go%4wKnIQh delta 23 ecmZ45#<;YNal=-14ntD~0|P4~lg)e8Go%4wMhA@m diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index e617884f4..27c14e740 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 0ac97d727eb520f5e72d499e669d33b52b48d52a..94bb063e67289c0104c29d0380467f0dd0cf488b 100644 GIT binary patch delta 21 ccmeB;>W$jqF2!MFq+noRWoWV4UuvHa07`ELTL1t6 delta 21 ccmeB;>W$jqF2!MJs$gJXWn{A1UuvHa07`WRS^xk5 diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index d00e963d6..c3e77dbd3 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 85077fab2a07a1878cfa56b840c7b06821392502..af85d57b624f85c56628cfc1f204f4263e40529f 100644 GIT binary patch delta 23 ecmdmSn|a4=<_%hH97aY81_oA!7MqRQ+R_1Twg_|p delta 23 ecmdmSn|a4=<_%hH90nE&1_oA!=9`V$+R_1T-UxR9 diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 032969cb9..33cdae6c5 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: oon arfiandwi , 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -527,8 +527,8 @@ msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" msgid "building [mo]: " msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "menulis keluaran... " @@ -615,16 +615,16 @@ msgstr "%s ditambahkan, %s diubah, %s dihapus" msgid "reading sources... " msgstr "membaca sumber... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "menunggu workers..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "menyiapkan dokumen" @@ -2963,7 +2963,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 9225ec784f3277f7c3f8d14f16ec7f1ed0b84e22..16c6038ccdef5637ce074a1e515f1df160a361c1 100644 GIT binary patch delta 21 ccmeB@=#tp*pN+%FNWs9s%FtpnJ3BKg07s(*QUCw| delta 21 ccmeB@=#tp*pN+%NRKdW&%E)9hJ3BKg07t0>Q2+n{ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index fb2954354..47a30b069 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tryggvi Kalman , 2021\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 7a917c3d55fc63f4af8a45393e238beb485a348c..66c42456edde0ba5ed7e88e40a62ac55335b1f44 100644 GIT binary patch delta 21 ccmbOeGACq1mL!Lfk%EDNm7&GvBFR+(08V2Dn*aa+ delta 21 ccmbOeGACq1mL!LPg@S>Bm7)3OBFR+(08Wbro&W#< diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index f277478d5..e3d3e2b21 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -528,8 +528,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -616,16 +616,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2964,7 +2964,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 675b7e9ab17cdddc20094e397030b8948e87785e..5f0e129beca4aea690195d90a81ee0b027b7131f 100644 GIT binary patch delta 23 fcmex0oAuXh)(yuNau^vY7#LU?T5LYIP-hJQeSrzp delta 23 fcmex0oAuXh)(yuNau`@B7#LU?nr}Y0P-hJQeW?l9 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 1a8e4115e..52f773cbb 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: KaKkouo, 2021\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -539,8 +539,8 @@ msgstr "%sビルダー向けの画像形式が見つかりません: %s" msgid "building [mo]: " msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "出力中..." @@ -627,16 +627,16 @@ msgstr "%s 件追加, %s 件更新, %s 件削除" msgid "reading sources... " msgstr "ソースを読み込み中..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "ワーカーの終了を待っています..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "ドキュメントの出力準備中" @@ -2975,7 +2975,7 @@ msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "無効な __slots__ が %s で見つかりました。無視されました。" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r の既定の引数値の解析に失敗しました: %s。" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 8f8985e77b1fd0b641120960a23444025f3ae6a6..c341ffb2e9d587c6a0693d8e012b21b6d484cbba 100644 GIT binary patch delta 23 fcmZ2Fm38S<)(viJIE;)G3=FIcEjIhD37-c5Wl{)I delta 23 fcmZ2Fm38S<)(viJI1Eh{3=FJ{Og8(i37-c5WmpJN diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index b47f5eff2..0bd748244 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index c79cedd2c89f8d4bb6371c96e33afe308be5b112..e2531451f26546590281efcc74ec05317a73431b 100644 GIT binary patch delta 21 ccmX?Le!zUgQ~?enBLxEkD?^LTa|M*S0a08AVE_OC delta 21 ccmX?Le!zUgQ~?e{Qw0M9D, 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index e5457c59faafe69f35f72b565405766810883420..756b10e5d98ee526b37497edf78a61fe2c1f0315 100644 GIT binary patch delta 21 ccmZoNZ8F{9D8ON4q+noRWoWV4Q^1l706_Z%P5=M^ delta 21 ccmZoNZ8F{9D8ON0p\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index b02d96baba54076ca21f32fa63da8e578eb7218a..8b3a5e900e08507867c9c099ac81cabdbde1a9c3 100644 GIT binary patch delta 21 dcmcc3f17{9O=b=wBLxEkD?^LT51D^40{~U92ZR6s delta 21 dcmcc3f17{9O=b=Q3k3rMD?{_m51D^40{~Un2ZsOv diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 8b956d0cf..3fafe8434 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index acbed2ffd4e702e2c2db824907218c503e185a4c..79f32968fe940a0dbcc4694aaefffcc1e9c5c781 100644 GIT binary patch delta 21 ccmaE7^3G(#8vza@BLxEkD?^LTUj(W+0bh~_x&QzG delta 21 ccmaE7^3G(#8vzaj3k3rMD?{_mUj(W+0bjZYy#N3J diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 6f3d3b2e4..e9eea18e6 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 394c4546016f95770331873f2cee38de3ca4ccfd..934448a92db0949c186ef654aed81bb5e72f6844 100644 GIT binary patch delta 21 ccmZ4Ly3}>UYyl1UYyl1f3k3rMD?{_miv^g308gC;JOBUy diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 601ffe539..abe9bad56 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 3056775eb49d7e772f746f81c00737a208ec981f..9608fd4e16db44402d598b61fc2ac88c0fe7db1a 100644 GIT binary patch delta 23 fcmaDfo$=9h#trASIgE@H3=FIcEjC}*=2idzZ_@}4 delta 23 fcmaDfo$=9h#trASISfq|3=FJ{Og3NF=2idzZ`lY9 diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 627fb2221..e86e09cb1 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 61850c227a245687bf85c3956f0a18496f556425..d3186b81b9ec7fb491404d2a893cdb431b28bcaf 100644 GIT binary patch delta 23 ecmZpE!PxwQal=YS4kIH40|P5Vi_IGygNy)d3kWL! delta 23 ecmZpE!PxwQal=YS4g(7X0|P5V^UWI_gNy)dGYBpK diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 7ec50767c..7e3a72064 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: m_aciek , 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "pisanie wyjścia..." @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 9d7e281da952eff0b657a1fedda3afd5a7959211..4d150524ea8fbcdef0f904860214c94b520721d8 100644 GIT binary patch delta 19 acmaFM{FZq_2Zxc7f`NgRp~c1tv5Wvj1_mbp delta 19 acmaFM{FZq_2Zy1lf`NgRk;%phv5Wvj4F)Cv diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 7b9ce3d58..93c27c178 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index ed2ac4acba9e553d02fb55cda62a26a6b146c6e4..2d0bfa7d8ba15aafff10187a081d8d766d8c47b2 100644 GIT binary patch delta 23 fcmZ4WpJmm5mJM!eIE;)G3=FIcEjIhDiJ1%lcKZn^ delta 23 fcmZ4WpJmm5mJM!eI1Eh{3=FJ{Og8(iiJ1%lcL50} diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 8a6a2f1df..14f98a378 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Rafael Fontenelle , 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index e8013bcb19b2f284a2bbe4e1d505fc4c6f200566..242219fd305299e67661bf7f494495fc56350449 100644 GIT binary patch delta 21 ccmdmBx4~}1b0H2RBLxEkD?^LT?}Z$B09LOD761SM delta 21 ccmdmBx4~}1b0H2xQw0M9D, 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 74f93b803566a3314ea7299a38cab2f66ccfc6d0..42242a5197b2cdec935a9732ac6c5bcbf730cf18 100644 GIT binary patch delta 21 dcmez7^37$#2@wt>BLxEkD?^LT7etov0svtK2igDt delta 21 dcmez7^37$#2@wuMQw0M9D, 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index c6798a84837a527ee71d8aef60dce24dd1fda848..85057af4b044d9133c4a146801414b91b23dcf2b 100644 GIT binary patch delta 23 ecmZ48z__}Bal=754kIH40|P5Vi_ItHk`w`9ln0am delta 23 ecmZ48z__}Bal=754ntD~0|P4~lg%gPk`w`9ng^2r diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 6d6e92abd..962e5d35d 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Il'ya , 2022\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo index 3cf9916ba087df79144d3b97dd6a70e0b62972ad..5744f3dffda34f2122ea9d3079fed51164856bd7 100644 GIT binary patch delta 19 acmZo>ZDyU&!C_>iU|?WnXt8m^XGQ=vjs@)i delta 19 acmZo>ZDyU&!C_#bU|?WnXufg6XGQ=vvjy+~ diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po index ca47fe888..f6b0b704a 100644 --- a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru_RU/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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (Russia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru_RU/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 42f70f9baf6a64c2515e6407f2de5b35b6cfbffe..4712c684e3db603bb280e122da2786f1ff735eed 100644 GIT binary patch delta 21 ccmbOvGf8H{el`vxBLxEkD?^LT$JxBu0Z9r5GXMYp delta 21 ccmbOvGf8H{el`vR3k3rMD?{_m$JxBu0ZB3jHUIzs diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 7d9186d88..ff5071062 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 974a2f7cbffc40d2c3943caa72e3eef9202cf5f6..8940570cdf65522a500d7522ddc76d0296d3d00f 100644 GIT binary patch delta 23 fcmaDbgXO^tmJLl)IE;)G3=FIcEjD*exmFGUb7l!_ delta 23 fcmaDbgXO^tmJLl)I1DTl3=FIc%{O;VxmFGUbB+mb diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 04dc9294f..4c59543ac 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Slavko , 2013-2019,2021\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -525,8 +525,8 @@ msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s" msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "zápis výstupu…" @@ -613,16 +613,16 @@ msgstr "%s pridané, %s zmenené, %s odstránené" msgid "reading sources... " msgstr "čítanie zdrojov…" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "čakanie na procesy…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "príprava dokumentov" @@ -2961,7 +2961,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Zlyhalo spracovanie predvolenej hodnoty argumentu %r: %s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 910f52916e8762cffadb64bfe7de83547834230c..a0d98544d29e54424d60101462a50b89d1d22b47 100644 GIT binary patch delta 21 ccmZ3fwNh&X4=;z2k%EDNm7&FE5nfRa06@(I@Bjb+ delta 21 ccmZ3fwNh&X4=;zIse*xlm66G25nfRa06^0O?*IS* diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 47231199f..48c68e6f0 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 3ab79d5f8..8b033995d 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 70714fa6cfd2af1e0c7d363b3d7ff6a99e666861..23420282dea7355790ae6004299e5c54a7b69d34 100644 GIT binary patch delta 23 fcmbR8gk{PTmJJ&haTpmX7#LU?T5R6AD7qg2c9;o+ delta 23 fcmbR8gk{PTmJJ&haTuB^7#LU?nQY# diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index c3c8ecda1..eae829fc7 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Besnik Bleta , 2021-2022\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 4cb295a00f4c285d2299db02fe50ac114e722d25..0db003b70fe2d771ccdde9237f9937bbcf6dcde5 100644 GIT binary patch delta 21 dcmccQdC7CbSs@N1BLxEkD?^LTSB3rx0svhW2mJs5 delta 21 dcmccQdC7CbSs@NXQw0M9D, 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 1a1b4278737ad421dc387cfa0e35d19e95021786..c43873a824d8fd77c010f2e049e2a9775e445a2b 100644 GIT binary patch delta 19 acmX@Xa)M<-2Zxc7f`NgRp~c1tI~V~!ss=g$ delta 19 acmX@Xa)M<-2Zy1lf`NgRk;%phI~V~!u?9H+ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 15186458b..7b2a85bd2 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 8df4403b3867c34d1ea224a4aefb930d6f04e32a..6529f20192e4bbbf88342c3a169caa23883b0d06 100644 GIT binary patch delta 19 acmX@ia+qa82Zxc7f`NgRp~c1tn;8K<>;@|U delta 19 acmX@ia+qa82Zy1lf`NgRk;%phn;8K<^9Cva diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 7cd8a7e82..7a96a8b0b 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 4521e62847edbce71d21e4029b17da57ed68b1d7..6cc194590864a949b2b955328c5bd8f19fb0c765 100644 GIT binary patch delta 21 ccmaE4^2lVvIROqMBLxEkD?^LT*93Yv0b70tcmMzZ delta 21 ccmaE4^2lVvIROqsQw0M9D\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 5219b64a8b6fbeb69323282a4d7dd0131ec3854c..17ed6a36cb4946258249f53101b86184a3951751 100644 GIT binary patch delta 19 acmZo?ZD*aZjl;-D!N9=E&|>4hlZ*g4*ajy6 delta 19 acmZo?ZD*aZjl;k~!N9=E(0t>*lZ*g4{RS!k diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index f17ca5165..b5fdf047f 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index e21ff600c2e44e302f24f476096e4adc0433b13f..e6ee0298eb7d0c6cfc19d2fdf9ced93f0188f345 100644 GIT binary patch delta 19 acmaFK{E~S>2Zxc7f`NgRp~c1tk&FOCZU!3w delta 19 acmaFK{E~S>2Zy1lf`NgRk;%phk&FOCbp{#$ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 5af3d64a9..811609dca 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index e0b82d66ce5d6aa42051f756ff816d0a619d27bf..b3cf31333453aad0e2ebf8f0af3c41d40f9f1448 100644 GIT binary patch delta 23 fcmZ2?f_dEu<_%M7IE;)G3=FIcEjG`onUoFyaj6Lg delta 23 fcmZ2?f_dEu<_%M7I1Eh{3=FJ{Og7J{nUoFyajyvl diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index ffb2a3bfc..4ab3427bb 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 3d75f96c56cbb4b4db7086541f370c29bcc85f0e..6d8b4964f4dbc200c0e4332601e2fc518f0cb026 100644 GIT binary patch delta 21 ccmZ2#veab5VIB@6BLxEkD?^LTr+K1y0Z?)VvH$=8 delta 21 ccmZ2#veab5VIB@cQw0M9Db%7 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 19da822c1..744b0fe18 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk , 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index e9dc6a4d65a6405d7241200b25aec5b96365b7ff..c53bbc9fa539834ad8b216a374d6a9815e2369ee 100644 GIT binary patch delta 19 acmaFP{G5402Zxc7f`NgRp~c1t;fw%7A_f%z delta 19 acmaFP{G5402Zw=$f`NgRq4~xM;fw%7M+O)G diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index c9a95bea1..3d9e61d5f 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 74eaf698e4e57ddec064da2047a3805538edee1a..b056c54d6ee93a28485422f257970e5ea296b5e2 100644 GIT binary patch delta 21 dcmcbtcUf=4LS7CdBLxEkD?^LTD|uIO0svIR2MhoJ delta 21 dcmcbtcUf=4LS7C-Qw0M9D, 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 3c75dab2c59afe34ae37c216e0ed91873e24017a..10415a9e4817cde2468540688cb0a11e9cda72ef 100644 GIT binary patch delta 19 acmaFP{G5402Zxc7f`NgRp~c1t;fw%7A_f%z delta 19 acmaFP{G5402Zy1lf`NgRk;%ph;fw%7DFze( diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 76e873e0e..5c5aa5a2b 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 9e69ec0e3b41cfa93efeafb3a6f3b77659588e3c..8a04bbb87c4c5d145bf23c29a89142747061bba8 100644 GIT binary patch delta 23 fcmbRKhk5!R<_-I%aTpmX7#LU?T5LWxEifGbdb$aR delta 23 fcmbRKhk5!R<_-I%aTuB^7#LU?nQT5bEifGbdcX;W diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index a22ccb545..366666ded 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-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: JY3, 2022\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index f3b45137fd23964ab341caf9ddb73567b38034c6..73dea5702b95fd7b68e6f0869bc446df5e7f924d 100644 GIT binary patch delta 19 acmey${FQk^2Zxc7f`NgRp~c1tsf++cHU>Wc delta 19 acmey${FQk^2Zw=$f`NgRq4~xMsf++cTLwY^ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 575229764..48df962cf 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-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 0474b848370dabee30475614a764a44ee70eb257..5ca4f4d872440efbeb857a5b8e05a3940f926446 100644 GIT binary patch delta 19 acmZo+XiU|?WnXt8lZ2_pbCk_B!6 delta 19 acmZo+X\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 94a38e880f387f3173bd83faed8461faed12625b..d3b26c90c9965c21edfb0397d740c5624a9c0723 100644 GIT binary patch delta 23 fcmZ2`h-vL1rVSAZ97aY81_oA!7Ml|i&N=`9Y6u8g delta 23 fcmZ2`h-vL1rVSAZ90nE&1_oA!=9?1|&N=`9YA^_0 diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 2633047fc..5e116a224 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Steven Hsu , 2021\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -530,8 +530,8 @@ msgstr "未找到對於 %s builder 適用的圖片:%s" msgid "building [mo]: " msgstr "建立 [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "編寫輸出..." @@ -618,16 +618,16 @@ msgstr "%s 已新增, %s 已變更, %s 已移除" msgid "reading sources... " msgstr "正在讀取來源..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "正在等待工作者..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "待寫入的 docname: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "正在準備文件" @@ -2966,7 +2966,7 @@ msgstr "無法取得一個 method 簽名給 %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "無法為 %r 剖析一個預設引數: %s" From ac1e5e623c980711d3f4cb2c4098a34f22e6b74e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 13:28:25 +0900 Subject: [PATCH 11/13] Update CHANGES for PR #10456 --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index cc4455050..d42b87440 100644 --- a/CHANGES +++ b/CHANGES @@ -16,8 +16,6 @@ Features added Bugs fixed ---------- -* #10456: filter_meta_fields fails to remove more than one meta-field - Testing -------- @@ -41,6 +39,8 @@ Bugs fixed * #9575: autodoc: The annotation of return value should not be shown when ``autodoc_typehints="description"`` +* #10456: py domain: ``:meta:`` fields are displayed if docstring contains two + or more meta-field Testing -------- From 23fd45569102d7af9929b4d74bedd81026185532 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 14:56:36 +0900 Subject: [PATCH 12/13] Remove changes for 5.1.x from 5.0.x branch --- CHANGES | 21 --------------------- sphinx/__init__.py | 6 +++--- 2 files changed, 3 insertions(+), 24 deletions(-) diff --git a/CHANGES b/CHANGES index 0f65675eb..707e8c973 100644 --- a/CHANGES +++ b/CHANGES @@ -1,24 +1,3 @@ -Release 5.1.0 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 5.0.0 beta2 (in development) ==================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 3fd1fe0f0..c3ec8a2e3 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', "'U' mode is deprecated", warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '5.1.0+' -__released__ = '5.1.0' # used when Sphinx builds its own docs +__version__ = '5.0.0b1' +__released__ = '5.0.0b1' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -32,7 +32,7 @@ __released__ = '5.1.0' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 1, 0, 'beta', 0) +version_info = (5, 0, 0, 'beta', 1) package_dir = path.abspath(path.dirname(__file__)) From ca25b4fba372c8c1cb86ec90642c88334c3dc84d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 15:03:05 +0900 Subject: [PATCH 13/13] Update CHANGES for PR #10443 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 707e8c973..4cb10f8a5 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed ``autodoc_typehints="description"`` * #9648: autodoc: ``*args`` and ``**kwargs`` entries are duplicated when ``autodoc_typehints="description"`` +* #10443: epub: EPUB builder can't detect the mimetype of .webp file * #10456: py domain: ``:meta:`` fields are displayed if docstring contains two or more meta-field