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 diff --git a/CHANGES b/CHANGES index 240f12e10..2abf528a5 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) ==================================== @@ -39,6 +18,11 @@ Bugs fixed * #9575: autodoc: The annotation of return value should not be shown when ``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 * #9096: sphinx-build: the value of progress bar for paralle build is wrong Testing 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__)) 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', 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): diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index d912cd7d5..98c51e9e9 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -115,7 +115,15 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str], 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) @@ -167,13 +175,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/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 298c6c943..a3f3ce429 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 435382d8c..112e4b22d 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: Abdullah ahmed , 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 8fcc8de88..b7c1db47b 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 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 b2c16091e..30dc9b197 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 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 97c460ca7..96f2d6e8e 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 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 60e76a8e3..ddf592bc7 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 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 3fe57c042..b1be6ebf3 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 222eb81f1..f6fe4e11d 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: Vilibald W. , 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 d18699b17..1f858b6a3 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 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 1e4aaab7f..b7dd563db 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 3c60c921a..268aaeeff 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: 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 86c0caa32..0ce2b7f36 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 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 a554522e5..6dc5868d1 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 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 c6da3de16..5f3754b9a 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 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 e114d6aad..f068b23fa 100644 Binary files a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index e7a684222..ec658491e 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/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: Adam Turner, 2022\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index 8a4d46e40..c6a6b1405 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 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 fc69e2adc..df5a6469c 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 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 1554dff91..6e9c9dab3 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 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 788bd2c25..411d90bfa 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 73691589b..cae860817 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: Ivar Smolin , 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 8b71712a7..97c633ca6 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 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 5752fad4e..c34989485 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 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 e706d4097..bc9f9bbbd 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 89c2a4d35..77516a361 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: 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 df2096fb6..a4cba10fc 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 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 ca2f067c9..26b9e8079 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 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 2519917fa..f87a3646b 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 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 ce69c2aea..900aeeafd 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 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 6c891fa05..acfc3a256 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 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 f116e0833..e34ae5be1 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 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 0ac97d727..94bb063e6 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 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 85077fab2..af85d57b6 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 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 9225ec784..16c6038cc 100644 Binary files a/sphinx/locale/is/LC_MESSAGES/sphinx.mo and b/sphinx/locale/is/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 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 7a917c3d5..66c42456e 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 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 675b7e9ab..5f0e129be 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 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 8f8985e77..c341ffb2e 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 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 c79cedd2c..e2531451f 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index f55f0305b..4ba100779 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: DALIUS DOBRAVOLSKAS , 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 e5457c59f..756b10e5d 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index a32c8dbb9..bce711dc2 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: 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 b02d96bab..8b3a5e900 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 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 acbed2ffd..79f32968f 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 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 394c45460..934448a92 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 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 3056775eb..9608fd4e1 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 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 61850c227..d3186b81b 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 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 9d7e281da..4d150524e 100644 Binary files a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 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 ed2ac4acb..2d0bfa7d8 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 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 e8013bcb1..242219fd3 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 6635bffde..f253f7e31 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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 , 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 74f93b803..42242a519 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 9faa037be..d424d7d56 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: Razvan Stefanescu , 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 c6798a848..85057af4b 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 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 3cf9916ba..5744f3dff 100644 Binary files a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo differ 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 42f70f9ba..4712c684e 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 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 974a2f7cb..8940570cd 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 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 910f52916..a0d98544d 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 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 70714fa6c..23420282d 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 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 4cb295a00..0db003b70 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 9c381f8ce..92ec394d2 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: Vladimir Milovanović , 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 1a1b42787..c43873a82 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 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 8df4403b3..6529f2019 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 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 4521e6284..6cc194590 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index f2e318431..51b3c1208 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: 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 5219b64a8..17ed6a36c 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 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 e21ff600c..e6ee0298e 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 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 e0b82d66c..b3cf31333 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 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 3d75f96c5..6d8b4964f 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 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 e9dc6a4d6..c53bbc9fa 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 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 74eaf698e..b056c54d6 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 73fa4c93a..f0708a4a0 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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: Hoat Le Van , 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 3c75dab2c..10415a9e4 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 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 9e69ec0e3..8a04bbb87 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 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 f3b45137f..73dea5702 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 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 0474b8483..5ca4f4d87 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index e0a60ce4c..a6d494298 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-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 (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 94a38e880..d3b26c90c 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 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" 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/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_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" diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index c075a8e2d..0011f450b 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1034,19 +1034,27 @@ 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' - ' __init__(x)\n' + ' * **args** (*int*) --\n' + '\n' + ' * **kwargs** (*int*) --\n' + '\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) @@ -1063,16 +1071,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', @@ -1089,16 +1101,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', 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' + )