From 930056479febe148f860a4755db9ea3402d82c23 Mon Sep 17 00:00:00 2001 From: mxd4 Date: Sun, 24 Apr 2022 14:43:50 +0200 Subject: [PATCH 01/33] #10384 - Add comment on ImageMagick requirement --- doc/usage/extensions/imgconverter.rst | 2 +- tests/test_ext_imgconverter.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index 9c742d059fc..89b12bddbda 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -12,7 +12,7 @@ This extension converts images in your document to appropriate format for builders. For example, it allows you to use SVG images with LaTeX builder. As a result, you don't mind what image format the builder supports. -Internally, this extension uses Imagemagick_ to convert images. +Internally, this extension uses Imagemagick_ to convert images, you'll have to install it on your machine. .. _Imagemagick: https://www.imagemagick.org/script/index.php diff --git a/tests/test_ext_imgconverter.py b/tests/test_ext_imgconverter.py index 134947c8743..de13bffe46e 100644 --- a/tests/test_ext_imgconverter.py +++ b/tests/test_ext_imgconverter.py @@ -1,4 +1,6 @@ -"""Test sphinx.ext.imgconverter extension.""" +"""Test sphinx.ext.imgconverter extension. +Requires ImageMagick to be installed, otherwise the conversion will be skipped and this test will fail. +""" import os From 85524b58175fec2f961d619a358c33a2405f18c7 Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 11:15:29 +0200 Subject: [PATCH 02/33] #10384 - Add line break to fix docslint --- doc/usage/extensions/imgconverter.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index 89b12bddbda..c7bce9db441 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -12,7 +12,8 @@ This extension converts images in your document to appropriate format for builders. For example, it allows you to use SVG images with LaTeX builder. As a result, you don't mind what image format the builder supports. -Internally, this extension uses Imagemagick_ to convert images, you'll have to install it on your machine. +Internally, this extension uses Imagemagick_ to convert images, +you'll have to install it on your machine. .. _Imagemagick: https://www.imagemagick.org/script/index.php From d2d5ce4eb6f9d947acde9a40814e7ab0b4461e60 Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 11:29:11 +0200 Subject: [PATCH 03/33] #10384 - Changes after suggestions --- doc/usage/extensions/imgconverter.rst | 6 +++--- tests/test_ext_imgconverter.py | 5 ++++- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index c7bce9db441..ce16b4fd9e1 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -12,10 +12,10 @@ This extension converts images in your document to appropriate format for builders. For example, it allows you to use SVG images with LaTeX builder. As a result, you don't mind what image format the builder supports. -Internally, this extension uses Imagemagick_ to convert images, -you'll have to install it on your machine. +The extension uses ImageMagick_ to perform conversions, +and will fail if ImageMagick is not installed. -.. _Imagemagick: https://www.imagemagick.org/script/index.php +.. _ImageMagick: https://www.imagemagick.org .. note:: diff --git a/tests/test_ext_imgconverter.py b/tests/test_ext_imgconverter.py index de13bffe46e..1ce578f1807 100644 --- a/tests/test_ext_imgconverter.py +++ b/tests/test_ext_imgconverter.py @@ -1,5 +1,8 @@ """Test sphinx.ext.imgconverter extension. -Requires ImageMagick to be installed, otherwise the conversion will be skipped and this test will fail. + +Unix only. Fails if ImageMagick_ is not installed. + +.. _ImageMagick: https://imagemagick.org """ import os From 4d840c790c1b6f772ee8b9d94fbd961280eb16fe Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 12:18:30 +0200 Subject: [PATCH 04/33] #10384 - Explicit warning and improve doc clarity --- doc/usage/extensions/imgconverter.rst | 16 +++++++++------- sphinx/ext/imgconverter.py | 9 ++++++--- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index ce16b4fd9e1..e5039923be7 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -12,14 +12,14 @@ This extension converts images in your document to appropriate format for builders. For example, it allows you to use SVG images with LaTeX builder. As a result, you don't mind what image format the builder supports. -The extension uses ImageMagick_ to perform conversions, -and will fail if ImageMagick is not installed. +By default the extension uses ImageMagick_ to perform conversions, +and will not work if ImageMagick is not installed. .. _ImageMagick: https://www.imagemagick.org .. note:: - Imagemagick rasterizes a SVG image on conversion. As a result, the image + ImageMagick rasterizes a SVG image on conversion. As a result, the image becomes not scalable. To avoid that, please use other image converters like `sphinxcontrib-svg2pdfconverter`__ (which uses Inkscape or ``rsvg-convert``). @@ -32,10 +32,12 @@ Configuration .. confval:: image_converter - A path to :command:`convert` command. By default, the imgconverter uses + A path a conversion command. By default, the imgconverter finds the command from search paths. - On windows platform, :command:`magick` command is used by default. + On Unix platform, :command:`convert` command is used by default. + + On Windows platform, :command:`magick` command is used by default. .. versionchanged:: 3.1 @@ -46,8 +48,8 @@ Configuration Additional command-line arguments to give to :command:`convert`, as a list. The default is an empty list ``[]``. - On windows platform, it defaults to ``["convert"]``. + On Windows platform, it defaults to ``["convert"]``. .. versionchanged:: 3.1 - Use ``["convert"]`` by default on windows + Use ``["convert"]`` by default on Windows diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index a40b6c46a32..2b721a2bbeb 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -30,9 +30,12 @@ def is_available(self) -> bool: subprocess.run(args, stdout=PIPE, stderr=PIPE, check=True) return True except OSError as exc: - logger.warning(__('convert command %r cannot be run, ' - 'check the image_converter setting: %s'), - self.config.image_converter, exc) + logger.warning(__( + f"Unable to run the image conversion command {self.config.image_converter!r}!\n" + "'sphinx.ext.imgconverter' requires ImageMagick by default. " + "Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n\n" + f'Traceback: {exc}' + )) return False except CalledProcessError as exc: logger.warning(__('convert exited with error:\n' From 4fc196a2a5e92fcb49e0ff1d7f6b327c584f34e7 Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 12:26:16 +0200 Subject: [PATCH 05/33] #10384 - Fix flake8 --- doc/usage/extensions/imgconverter.rst | 2 +- sphinx/ext/imgconverter.py | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index e5039923be7..e802d645758 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -32,7 +32,7 @@ Configuration .. confval:: image_converter - A path a conversion command. By default, the imgconverter finds + A path to a conversion command. By default, the imgconverter finds the command from search paths. On Unix platform, :command:`convert` command is used by default. diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index 2b721a2bbeb..10b3306230d 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -31,9 +31,10 @@ def is_available(self) -> bool: return True except OSError as exc: logger.warning(__( - f"Unable to run the image conversion command {self.config.image_converter!r}!\n" - "'sphinx.ext.imgconverter' requires ImageMagick by default. " - "Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n\n" + f"Unable to run the image conversion command {self.config.image_converter!r}!" + "\n'sphinx.ext.imgconverter' requires ImageMagick by default. " + "Ensure it is installed, or set the 'image_converter' option" + "to a custom conversion command.\n\n" f'Traceback: {exc}' )) return False From 7f63a562b985abd6835c20934eff318e5bf6cd3d Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 12:29:41 +0200 Subject: [PATCH 06/33] #10384 - Fix typo --- sphinx/ext/imgconverter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index 10b3306230d..a665ef3cf69 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -33,7 +33,7 @@ def is_available(self) -> bool: logger.warning(__( f"Unable to run the image conversion command {self.config.image_converter!r}!" "\n'sphinx.ext.imgconverter' requires ImageMagick by default. " - "Ensure it is installed, or set the 'image_converter' option" + "Ensure it is installed, or set the 'image_converter' option " "to a custom conversion command.\n\n" f'Traceback: {exc}' )) From 33b5e23467f0d8b80e77012afc5992df1a0581b0 Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 13:56:51 +0200 Subject: [PATCH 07/33] #10384 - Grammar --- doc/usage/extensions/imgconverter.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/usage/extensions/imgconverter.rst b/doc/usage/extensions/imgconverter.rst index e802d645758..b9af22d6f33 100644 --- a/doc/usage/extensions/imgconverter.rst +++ b/doc/usage/extensions/imgconverter.rst @@ -35,9 +35,9 @@ Configuration A path to a conversion command. By default, the imgconverter finds the command from search paths. - On Unix platform, :command:`convert` command is used by default. + On Unix platforms, the command :command:`convert` is used by default. - On Windows platform, :command:`magick` command is used by default. + On Windows, the command :command:`magick` is used by default. .. versionchanged:: 3.1 @@ -48,7 +48,7 @@ Configuration Additional command-line arguments to give to :command:`convert`, as a list. The default is an empty list ``[]``. - On Windows platform, it defaults to ``["convert"]``. + On Windows, it defaults to ``["convert"]``. .. versionchanged:: 3.1 From 8fc2178f1bb2850265cad39aac4cf4b1dbb964f7 Mon Sep 17 00:00:00 2001 From: mxd4 Date: Mon, 2 May 2022 18:05:15 +0200 Subject: [PATCH 08/33] #10384 - Remove comment in test --- sphinx/ext/imgconverter.py | 4 ++-- tests/test_ext_imgconverter.py | 7 +------ 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/sphinx/ext/imgconverter.py b/sphinx/ext/imgconverter.py index a665ef3cf69..9d6708d2fa3 100644 --- a/sphinx/ext/imgconverter.py +++ b/sphinx/ext/imgconverter.py @@ -31,8 +31,8 @@ def is_available(self) -> bool: return True except OSError as exc: logger.warning(__( - f"Unable to run the image conversion command {self.config.image_converter!r}!" - "\n'sphinx.ext.imgconverter' requires ImageMagick by default. " + f"Unable to run the image conversion command {self.config.image_converter!r}. " + "'sphinx.ext.imgconverter' requires ImageMagick by default. " "Ensure it is installed, or set the 'image_converter' option " "to a custom conversion command.\n\n" f'Traceback: {exc}' diff --git a/tests/test_ext_imgconverter.py b/tests/test_ext_imgconverter.py index 1ce578f1807..134947c8743 100644 --- a/tests/test_ext_imgconverter.py +++ b/tests/test_ext_imgconverter.py @@ -1,9 +1,4 @@ -"""Test sphinx.ext.imgconverter extension. - -Unix only. Fails if ImageMagick_ is not installed. - -.. _ImageMagick: https://imagemagick.org -""" +"""Test sphinx.ext.imgconverter extension.""" import os From b0ae5480c5b3a2778bf6b9aef428b42c0e6d8ac9 Mon Sep 17 00:00:00 2001 From: Aaron Carlisle Date: Tue, 10 May 2022 17:35:00 -0400 Subject: [PATCH 09/33] Epub: Add WebP mime type When building docs with WebP images using the EPUB builder results in this warning: `WARNING: unknown mimetype for _images/.webp, ignoring` This commit fixes this by adding the mapping for webp-files to the correct mime type. --- sphinx/builders/_epub_base.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 4bb602fe0c4..78d3d89a0ee 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -56,6 +56,7 @@ '.xhtml': 'application/xhtml+xml', '.css': 'text/css', '.png': 'image/png', + '.webp': 'image/webp', '.gif': 'image/gif', '.svg': 'image/svg+xml', '.jpg': 'image/jpeg', From 51fc4d180b78c5b31ea6217ab4bd3693a88c202e Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 15 May 2022 00:25:13 +0000 Subject: [PATCH 10/33] Update message catalogs --- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5587 -> 5587 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8265 -> 8265 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13160 -> 13160 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82357 -> 82357 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14119 -> 14119 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1864 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 100244 -> 100244 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 75789 -> 84850 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 112 +++++++++---------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 503 -> 503 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17189 -> 17189 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11533 -> 11533 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3082 -> 3082 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10018 -> 10780 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 17 +-- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84645 -> 84645 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7104 -> 7104 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19426 -> 19426 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 493 -> 493 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81834 -> 81834 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 7984 -> 7984 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8822 -> 8822 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16427 -> 16427 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5417 -> 5417 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/sphinx.pot | 16 +-- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78356 -> 78356 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9426 -> 9426 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6754 -> 6754 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58414 -> 58414 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6693 -> 6693 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5971 -> 5971 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 14 +-- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 65047 -> 65047 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 14 +-- 72 files changed, 305 insertions(+), 304 deletions(-) diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 1a047a52e9894804ec594596ec5cc3bfedf4e562..97c460ca73a550a27d7a03ba6f419ddef764357d 100644 GIT binary patch delta 21 ccmcbteOY@$1uuu8se*xlm66Hj2Hs!}08n)XTL1t6 delta 21 ccmcbteOY@$1uutzg@S>Bm7)3O2Hs!}08p0(UjP6A diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index b166f7972c7..95966b01b40 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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 570ca234252fb0e6b14e19b54ae17dc8c8a2a638..3fe57c04282e2cf9bc779f64d9a5f79be0ed4d07 100644 GIT binary patch delta 21 dcmX@, 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\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 4dd947f77e25be1db2fcaabe71fa74def742f2ce..1e4aaab7f16b4a6eafedd48266a1da0803a883b8 100644 GIT binary patch delta 21 dcmaEn_9AV=PI(SPQw0M9D, 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\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 "læser kilder ..." -#: 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 "forbereder dokumenter" @@ -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 492a17e1acbf6c274c80fa49ea0997d157cc54f2..a554522e59fdd7c280772278863410102331f9db 100644 GIT binary patch delta 23 fcmdnm%(}Iib;F8A4ntD~0|P4~lg%3%Sq}gJX+{W( delta 23 fcmdnm%(}Iib;F8A4g(7X0|P5V^UWI?Sq}gJX=n(K diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 0c5ea3e9c98..96dd36648cf 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -525,8 +525,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 "εγγραφή εξόδου..." @@ -613,16 +613,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 "προετοιμασία κειμένων" @@ -2961,7 +2961,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/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index d3c6801a6c907524ab226f7e12d0719fabbb5048..c6da3de165d646fcbf5451d7e72b11c7aa1411f9 100644 GIT binary patch delta 19 acmX@de2#fS2Zy1lf`NgRk;%phc8mZ&a|Ou& delta 19 acmX@de2#fS2Zw=$f`NgRq4~xMc8mZ&kp;~F diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index d8bf76a4b57..d6eb1a721c7 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 8e91ce7c76e66223377931c30f9593228ffab133..e114d6aad23a1ca440286065d1d7bb7478bbe731 100644 GIT binary patch delta 21 ccmZ3Uw>)pdbvX`0Qw0M9D)pdbvX_L3k3rMD?{_m_vJh!09-)_asU7T diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index e4f1a80e81c..e7a684222f1 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -523,8 +523,8 @@ msgstr "a suitable image for %s builder not found: %s" msgid "building [mo]: " msgstr "building [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 "writing output... " @@ -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/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index c58b6c61eeffbabee8cbd74b4e09ce603cd3567a..8a4d46e408a6b5cb2867c371b130eb0a207744b2 100644 GIT binary patch delta 19 acmeyv{D*l$2Zy1lf`NgRk;%phIg9{CM+Q>> delta 19 acmeyv{D*l$2Zw=$f`NgRq4~xMIg9{CWd>IO diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 34d24f08ae3..4294e68bd42 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index d78217caf11493bd2529d1c62baa9279595c93b3..fc69e2adc49eb7cd9a299f34da55c476f7d1d83d 100644 GIT binary patch delta 21 ccmX@XcY<$&5etW*se*xlm66G2D;7Rx07J$FBLDyZ delta 21 ccmX@XcY<$&5etWbg@S>Bm7)1&D;7Rx07K{nCjbBd diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index f4bf1dcc8c3..cbc9bf1a280 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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 307f1144315e27569726c8c60ee645e3c201e1da..5752fad4ebd2d7991531dac63423719296ac0e0a 100644 GIT binary patch delta 23 fcmbQz&o-r>Z9~^G4ntD~0|P4~lg*QsF+BtTW-ADf delta 23 fcmbQz&o-r>Z9~^G4g(7X0|P5V^Uaf%F+BtTW=#l_ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 932049257ff..837dae42b26 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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 "شکست در دریافت امضای شگرد برای %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/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 950d4c232d4..6ba819e6110 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -37,7 +37,7 @@ Documentation.addTranslations({ "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", - "Search finished, found ${resultCount} page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "Recherche termin\u00e9e, ${resultCount} page(s) correspondant \u00e0 la requ\u00eate de recherche ont \u00e9t\u00e9 trouv\u00e9es.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Searching for multiple words only shows matches that contain\n all words.": "Une recherche sur plusieurs mots ne retourne que les r\u00e9sultats contenant tous les mots.", diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 198bc526dc41d3696743e3a53cf262e9c29bcbbb..df2096fb6b14ddcba7a4111ebebcd05e152ad794 100644 GIT binary patch delta 20358 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�yJr=XOn9BhsKP)o5C)$isKuPLV8 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, 2019 # David Georges, 2021 # Larlet David , 2008 -# Denis Bitouzé , 2020-2021 +# Denis Bitouzé , 2020-2022 # fgallaire , 2010 # fgallaire , 2010 # François Poirotte , 2016-2017,2020 # Georg Brandl , 2014 # Hugo Herbelin , 2021 # Jean-Daniel Browne , 2010 -# Jean-François B. , 2017-2019 +# Jean-François B. , 2017-2019,2022 # Julien Palard , 2017 # Julien Malard , 2019 # Kim S. , 2019 @@ -36,7 +36,7 @@ msgstr "" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-05-08 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: David Georges, 2021\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" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -316,7 +316,7 @@ msgstr "Nom d'évènement inconnu : %s" #: sphinx/events.py:102 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "Le gestionnaire %r de l'évènement %r a créé une exception." #: sphinx/extension.py:44 #, python-format @@ -347,7 +347,7 @@ msgstr "Analyse lexicale de literal_bloc impossible en \"%s\". Mise en évidence msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "plusieurs fichiers trouvés pour le document \"%s\" : %r\nUtiliser %r pour la compilation." #: sphinx/project.py:51 msgid "document not readable. Ignored." @@ -441,7 +441,7 @@ msgstr "enumerable_node %r est déjà enregistré" #: sphinx/registry.py:408 #, python-format msgid "math renderer %s is already registered" -msgstr "" +msgstr "le moteur de rendu mathématique %s est déjà enregistré" #: sphinx/registry.py:421 #, python-format @@ -488,12 +488,12 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/roles.py:188 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "numéro PEP %s non valide" #: sphinx/roles.py:222 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "numéro RFC %snon valide" #: sphinx/theming.py:72 #, python-format @@ -528,7 +528,7 @@ msgstr "le fichier %r dans le dossier des thèmes n'est pas une archive zip vali #: sphinx/theming.py:236 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" -msgstr "" +msgstr "sphinx_rtd_theme (< 0.3.0) trouvé. Il ne sera plus disponible à partir de Sphinx-6.0." #: sphinx/theming.py:241 #, python-format @@ -686,7 +686,7 @@ msgstr "écriture du type MIME du fichier ..." #: sphinx/builders/_epub_base.py:468 msgid "writing META-INF/container.xml file..." -msgstr "" +msgstr "écriture du fichier META-INF/container.xml..." #: sphinx/builders/_epub_base.py:496 msgid "writing content.opf file..." @@ -831,7 +831,7 @@ msgstr "Ancre '%s' non trouvée" #: sphinx/builders/linkcheck.py:553 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "Échec de la compilation de la regex dans linkcheck_allowed_redirects : %r%s" #: sphinx/builders/manpage.py:30 #, python-format @@ -1094,7 +1094,7 @@ msgstr "le fichier de favicon %r n'existe pas " msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." -msgstr "" +msgstr "html_add_permalinks a été déprécié depuis la v3.5.0. Veuillez utiliser à la place html_permalinks et html_permalinks_icon." #: sphinx/builders/html/__init__.py:1340 #, python-format @@ -1163,7 +1163,7 @@ msgstr "Clé de configuration inconnue : latex_elements[%r]; ignorée." #: sphinx/builders/latex/__init__.py:453 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "" +msgstr "Option de thème inconnue : latex_theme_options[%r], ignoré." #: sphinx/builders/latex/theming.py:83 #, python-format @@ -1251,7 +1251,7 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nGénération de la documentation à partir des fichiers sources.\n\nsphinx-build génère de la documentation à partir des fichiers de SOURCEDIR et la place\ndans OUTPUTDIR. Il recherche 'conf.py' dans SOURCEDIR pour les paramètres de configuration.\nL'outil 'sphinx-quickstart' peut être utilisé pour générer des fichiers modèles,\ny compris 'conf.py'.\n\nsphinx-build peut créer de la documentation dans différents formats. Un format est\nsélectionné en spécifiant le nom du constructeur sur la ligne de commande ; le format par défaut est\nHTML. Les constructeurs peuvent également effectuer d'autres tâches liées au traitement de la documentation.\n\nPar défaut, tout ce qui est obsolète est construit. La sortie pour les fichiers sélectionnés seulement\npeut être construite en spécifiant des noms de fichiers individuels.\n" #: sphinx/cmd/build.py:120 msgid "path to documentation source files" @@ -1524,7 +1524,7 @@ msgid "" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "Sphinx a la notion de « version » et de « release » pour le\nlogiciel. Chaque version peut avoir plusieurs « releases ». Par exemple, pour\nPython, la version est quelque chose comme 2.5 ou 3.0, tandis que la « release » est\nquelque chose comme 2.5.1 ou 3.0a1. Si vous n'avez pas besoin de cette double structure,\nmettez simplement la même valeur aux deux." #: sphinx/cmd/quickstart.py:256 msgid "Project version" @@ -1795,7 +1795,7 @@ msgstr "Variable de template invalide : %s" #: sphinx/directives/code.py:56 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "les espaces non blancs sont supprimés par dedent" #: sphinx/directives/code.py:75 #, python-format @@ -1842,7 +1842,7 @@ msgstr "Spécification de lignes %r : aucune ligne extraite du fichier inclus %r #: sphinx/directives/other.py:102 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "le motif global toctree %r ne correspond à aucun document" #: sphinx/directives/other.py:123 sphinx/environment/adapters/toctree.py:168 #, python-format @@ -1877,17 +1877,17 @@ msgstr "Auteur : " #: sphinx/directives/other.py:246 msgid ".. acks content is not a list" -msgstr "" +msgstr "... le contenu de acks n'est pas une liste" #: sphinx/directives/other.py:271 msgid ".. hlist content is not a list" -msgstr "" +msgstr "... le contenu de hlist n'est pas une liste" #: sphinx/directives/patches.py:109 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "" +msgstr "L'option \":file :\" de la directive csv-table reconnaît désormais un chemin absolu comme un chemin relatif du répertoire source. Veuillez mettre à jour votre document." #: sphinx/domains/__init__.py:389 #, python-format @@ -1899,12 +1899,12 @@ msgstr "%s %s" msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." -msgstr "" +msgstr "Déclaration C dupliquée, également définie à %s:%s.\nLa déclaration est '.. c:%s:: %s'." #: sphinx/domains/c.py:3226 #, python-format msgid "%s (C %s)" -msgstr "" +msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 #: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 @@ -1913,7 +1913,7 @@ msgstr "Paramètres" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7326 msgid "Return values" -msgstr "" +msgstr "Valeurs retournées" #: sphinx/domains/c.py:3353 sphinx/domains/cpp.py:7329 #: sphinx/domains/javascript.py:216 sphinx/domains/python.py:445 @@ -1944,7 +1944,7 @@ msgstr "macro" #: sphinx/domains/c.py:3754 msgid "struct" -msgstr "" +msgstr "structure" #: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 msgid "union" @@ -1964,7 +1964,7 @@ msgstr "type" #: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 msgid "function parameter" -msgstr "" +msgstr "paramètre de fonction" #: sphinx/domains/changeset.py:20 #, python-format @@ -1996,7 +1996,7 @@ msgstr "La citation [%s] n'est pas référencée" msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." -msgstr "" +msgstr "Déclaration C++ dupliquée, également définie à %s:%s.\nLa déclaration est '.. cpp:%s:: %s'." #: sphinx/domains/cpp.py:7081 msgid "Template Parameters" @@ -2156,7 +2156,7 @@ msgstr "%s() (méthode de la classe %s)" #: sphinx/domains/python.py:820 sphinx/domains/python.py:960 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%s (propriété %s)" #: sphinx/domains/python.py:822 #, python-format @@ -2338,7 +2338,7 @@ msgstr "format de numfig_format invalide : %s" #: sphinx/domains/std.py:1075 #, python-format msgid "undefined label: %s" -msgstr "lablel non défini: 1%s" +msgstr "label non défini: %s" #: sphinx/domains/std.py:1077 #, python-format @@ -2645,21 +2645,21 @@ msgstr "====================== durées de lecture les plus lentes ============== #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "le lien %r codé en dur pourrait être remplacé par un extlink (essayez d'utiliser %r à la place)" #: sphinx/ext/extlinks.py:96 #, python-format msgid "" "extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " "all other '%' need to be escaped as '%%'." -msgstr "" +msgstr "extlinks : Sphinx-6.0 exigera que l'URL de base contienne exactement un '%s' et que tous les autres '%' soient échappés en '%%'." #: sphinx/ext/extlinks.py:104 #, python-format msgid "" "extlinks: Sphinx-6.0 will require a caption string to contain exactly one " "'%s' and all other '%' need to be escaped as '%%'." -msgstr "" +msgstr "extlinks : Sphinx-6.0 exigera qu'une chaîne de légende contienne exactement un '%s' et que tous les autres '%' soient échappés comme '%%'." #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" @@ -2803,17 +2803,17 @@ msgstr "(dans %s)" #: sphinx/ext/intersphinx.py:494 #, python-format msgid "inventory for external cross-reference not found: %s" -msgstr "" +msgstr "inventaire pour la référence croisée externe non trouvé : %s" #: sphinx/ext/intersphinx.py:500 #, python-format msgid "role for external cross-reference not found: %s" -msgstr "" +msgstr "rôle pour la référence croisée externe non trouvé : %s" #: sphinx/ext/intersphinx.py:587 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "" +msgstr "%sexterne :%s cible de référence non trouvée : %s" #: sphinx/ext/intersphinx.py:612 #, python-format @@ -2879,12 +2879,12 @@ msgstr "

Modules pour lesquels le code est disponible

" #: sphinx/ext/autodoc/__init__.py:120 #, python-format msgid "invalid value for member-order option: %s" -msgstr "" +msgstr "valeur invalide pour l'option de l'ordre des membres : %s" #: sphinx/ext/autodoc/__init__.py:128 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "" +msgstr "valeur invalide pour l'option class-doc-from : %s" #: sphinx/ext/autodoc/__init__.py:376 #, python-format @@ -2906,7 +2906,7 @@ msgstr "attribut manquant %s dans l'objet %s" msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc : n'a pas réussi à déterminer %s.%s (%r) devait être documenté, l'exception suivante a été levée :\n%s" #: sphinx/ext/autodoc/__init__.py:877 #, python-format @@ -2919,12 +2919,12 @@ msgstr "module à importer pour auto-documenter %r est inconnu (essayer de place #: sphinx/ext/autodoc/__init__.py:921 #, python-format msgid "A mocked object is detected: %r" -msgstr "" +msgstr "Un faux objet a été détecté : %r" #: sphinx/ext/autodoc/__init__.py:940 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "" +msgstr "erreur lors du formatage de la signature pour %s : %s" #: sphinx/ext/autodoc/__init__.py:991 msgid "\"::\" in automodule name doesn't make sense" @@ -2946,7 +2946,7 @@ msgstr "__all__ devrait être une liste de chaînes, pas %r (dans module %s) -- #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "" +msgstr "attribut manquant mentionné dans l'option :members: : module %s, attribut %s" #: sphinx/ext/autodoc/__init__.py:1278 sphinx/ext/autodoc/__init__.py:1355 #: sphinx/ext/autodoc/__init__.py:2763 @@ -2983,17 +2983,17 @@ msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" #: sphinx/ext/autodoc/__init__.py:2382 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "" +msgstr "Invalide __slots__ trouvé sur %s. Ignoré." #: sphinx/ext/autodoc/preserve_defaults.py:105 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "" +msgstr "Impossible d'analyser une valeur d'argument par défaut pour %r : %s" #: sphinx/ext/autodoc/type_comment.py:122 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "" +msgstr "Échec de la mise à jour de la signature pour %r : paramètre non trouvé : %s" #: sphinx/ext/autodoc/type_comment.py:125 #, python-format @@ -3014,7 +3014,7 @@ msgstr "autosummary : fichier stub non trouvé %r. Vérifiez votre paramètre au #: sphinx/ext/autosummary/__init__.py:268 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "" +msgstr "Un résumé automatique sous-titré nécessite l'option :toctree:. Ignoré." #: sphinx/ext/autosummary/__init__.py:319 #, python-format @@ -3022,7 +3022,7 @@ msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary : échec de l'importation de %s.\nIndications possibles :\n%s" #: sphinx/ext/autosummary/__init__.py:333 #, python-format @@ -3069,7 +3069,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] échec de l'importation de %s.\nIndications possibles :\n%s" #: sphinx/ext/autosummary/generate.py:574 msgid "" @@ -3114,7 +3114,7 @@ msgstr "membres importés du document (défaut : %(default)s)" msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "documenter exactement les membres dans l'attribut __all__ du module. (par défaut : %(default)s)" #: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 msgid "Keyword Arguments" @@ -3138,7 +3138,7 @@ msgstr "Autres paramètres" #: sphinx/ext/napoleon/docstring.py:754 msgid "Receives" -msgstr "" +msgstr "Reçoit" #: sphinx/ext/napoleon/docstring.py:758 msgid "References" @@ -3155,12 +3155,12 @@ msgstr "Yields" #: sphinx/ext/napoleon/docstring.py:964 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "" +msgstr "ensemble de valeurs invalides (accolade fermante manquante) : %s" #: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "" +msgstr "ensemble de valeurs invalides (accolade ouvrante manquante) :%s" #: sphinx/ext/napoleon/docstring.py:978 #, python-format @@ -3447,7 +3447,7 @@ msgstr "Cacher les résultats de la recherche" #: sphinx/themes/basic/static/searchtools.js:112 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "Recherche terminée, ${resultCount} page(s) correspondant à la requête de recherche ont été trouvées." #: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" @@ -3517,7 +3517,7 @@ msgstr "ncohérences de références de terme dans le message traduit. Original msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "Impossible de déterminer le texte de remplacement pour le renvoi. Il peut s'agir d'un bogue." #: sphinx/transforms/post_transforms/__init__.py:150 #, python-format @@ -3527,12 +3527,12 @@ msgstr "plus d'une cible trouvée pour la référence %r de type 'any' : pourrai #: sphinx/transforms/post_transforms/__init__.py:198 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "" +msgstr "%s:%s cible de référence non trouvée : %s" #: sphinx/transforms/post_transforms/__init__.py:201 #, python-format msgid "%r reference target not found: %s" -msgstr "" +msgstr "%r cible de référence non trouvée : %s" #: sphinx/transforms/post_transforms/images.py:75 #, python-format @@ -3567,7 +3567,7 @@ msgstr "échoué" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "Problème dans le domaine %s : le champ est censé utiliser le rôle '%s', mais ce rôle ne figure pas dans le domaine." #: sphinx/util/docutils.py:256 #, python-format @@ -3638,7 +3638,7 @@ msgstr "Lien permanent vers ce terme" #: sphinx/writers/html.py:428 sphinx/writers/html.py:433 #: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 msgid "Permalink to this heading" -msgstr "" +msgstr "Lien permanent vers cette rubrique" #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index e7741e08ee0f755351011215119b09064b51aa87..ca2f067c99dc83c6cae152d1da7d47f69167fc67 100644 GIT binary patch delta 19 acmey){GEA12Zy1lf`NgRk;%ph>5KqHi3UUf delta 19 acmey){GEA12Zw=$f`NgRq4~xM>5KqHrv^v> diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 8383d155082..f34ffe9efeb 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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 defd808661a36cfb52ad5f9e502186c611a1d0da..f116e0833f7d8578216be03eb6aa3b490cf4aae4 100644 GIT binary patch delta 23 ecmZ45#<;YNal=-14ntD~0|P4~lg)e8Go%4wMhA@m delta 23 ecmZ45#<;YNal=-14g(7X0|P5V^UZtJGo%4wXa|u1 diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 0b7c55697ca..e617884f4fe 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 4e8b5abc97197f1a896936e1c5d4c51df853490b..0ac97d727eb520f5e72d499e669d33b52b48d52a 100644 GIT binary patch delta 21 ccmeB;>W$jqF2!MJs$gJXWn{A1UuvHa07`WRS^xk5 delta 21 ccmeB;>W$jqF2!MBpQ2+n{ delta 21 ccmeB@=#tp*pN+%7Lczem%Fui>J3BKg07uIORR910 diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 1805375a342..fb29543548a 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index ee6db12cd60e725ba233bce00c6ab4ca258dbc8c..7a917c3d55fc63f4af8a45393e238beb485a348c 100644 GIT binary patch delta 3820 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 w9MUJRe__9p$N}SKWaQHIRF3v diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index d1426894bb5..f277478d59d 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -3,6 +3,7 @@ # This file is distributed under the same license as the Sphinx project. # # Translators: +# Antonari Palmio, 2022 # Denis Cappellin , 2018 # Paolo Cavallini , 2013-2017 # Roland Puntaier , 2013 @@ -14,7 +15,7 @@ msgstr "" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2022-05-08 00:17+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Denis Cappellin , 2018\n" +"Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -26,32 +27,32 @@ msgstr "" #: sphinx/application.py:149 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Impossibile trovare la cartella sorgente ( %s )" #: sphinx/application.py:153 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "La cartella di output (%s) non è una cartella" #: sphinx/application.py:157 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "La cartella sorgente e la cartella di destinazione non possono essere identiche" #: sphinx/application.py:188 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sto eseguendo Sphinx v%s" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "Questo progetto necessita almeno di Sphinx v%s per cui non può essere creato con la versione attuale." #: sphinx/application.py:229 msgid "making output directory" -msgstr "" +msgstr "sto creando la cartella di output" #: sphinx/application.py:234 sphinx/registry.py:427 #, python-format @@ -68,7 +69,7 @@ msgstr "" #: sphinx/application.py:265 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "caricamento traduzioni [%s]... " #: sphinx/application.py:282 sphinx/util/__init__.py:504 msgid "done" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 1e5817552112d380cc79be080e491936fe6fc8e2..8f8985e77b1fd0b641120960a23444025f3ae6a6 100644 GIT binary patch delta 23 fcmZ2Fm38S<)(viJI1Eh{3=FJ{Og8(i37-c5WmpJN delta 23 fcmZ2Fm38S<)(viJI1DTl3=FIc%{Tk437-c5WqJrz diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 5cf60925dce..b47f5eff290 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -524,8 +524,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 "출력을 쓰는 중… " @@ -612,16 +612,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 "문서 준비 중" @@ -2960,7 +2960,7 @@ msgstr "%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/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 18f5b573f81ea078910e2192e69876e9cec835ee..c79cedd2c89f8d4bb6371c96e33afe308be5b112 100644 GIT binary patch delta 21 ccmX?Le!zUgQ~?e{Qw0M9DpF diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index d837012e73a..f55f0305bad 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 52a0e8ab2c3031f9ed41182c524e8277c83f48c7..3056775eb49d7e772f746f81c00737a208ec981f 100644 GIT binary patch delta 23 fcmaDfo$=9h#trASISfq|3=FJ{Og3NF=2idzZ`lY9 delta 23 fcmaDfo$=9h#trASISecm3=FIc%{O1y=2idzZ~F)l diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 8daad6922bb..627fb2221b1 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -529,8 +529,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 "" @@ -617,16 +617,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 "" @@ -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/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index fd05318031e49b2aac2c63cda6537039b69fce8b..9d7e281da952eff0b657a1fedda3afd5a7959211 100644 GIT binary patch delta 19 acmaFM{FZq_2Zy1lf`NgRk;%phv5Wvj4F)Cv delta 19 acmaFM{FZq_2Zw=$f`NgRq4~xMv5WvjD+Ve6 diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 9aea4c642d5..7b9ce3d58a8 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 2f2745eb367a041f9529efdf685b50286350de6e..ed2ac4acba9e553d02fb55cda62a26a6b146c6e4 100644 GIT binary patch delta 23 fcmZ4WpJmm5mJM!eI1Eh{3=FJ{Og8(iiJ1%lcL50} delta 23 fcmZ4WpJmm5mJM!eI1DTl3=FIc%{Tk4iJ1%lcOwZa diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 6cb2b8feab3..8a6a2f1dfbb 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -528,8 +528,8 @@ msgstr "uma imagem adequada para o compilador %s não encontrada: %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 "escrevendo saída… " @@ -616,16 +616,16 @@ msgstr "%s adicionado(s), %s alterado(s), %s removido(s)" msgid "reading sources... " msgstr "lendo fontes… " -#: 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 "aguardando por workers…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames para escrever: %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" @@ -2964,7 +2964,7 @@ msgstr "Falha ao obter uma assinatura de método para %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "__slots__ inválido encontrado em %s. Ignorado." -#: 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 "Falha ao analisar um valor de argumento padrão para %r: %s" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 98893a9c1c52a5fb3a7426dbf1769d558fe9e54d..e8013bcb19b2f284a2bbe4e1d505fc4c6f200566 100644 GIT binary patch delta 21 ccmdmBx4~}1b0H2xQw0M9D, 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\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/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 44c1daf99a92fe97768ac3c9cdf5fdeb318a539b..74f93b803566a3314ea7299a38cab2f66ccfc6d0 100644 GIT binary patch delta 21 dcmez7^37$#2@wuMQw0M9D, 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\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/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index f40c5dfdb2fd00d067d6daab6a401e39f294ac82..c6798a84837a527ee71d8aef60dce24dd1fda848 100644 GIT binary patch delta 23 ecmZ48z__}Bal=754ntD~0|P4~lg%gPk`w`9ng^2r delta 23 ecmZ48z__}Bal=754g(7X0|P5V^UWvak`w`9ya$&6 diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 49ce075d1f4..6d6e92abd2b 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -529,8 +529,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 "" @@ -617,16 +617,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 "" @@ -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/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 604dd2b2c649763e59773c6ebaa2f032a228901e..910f52916e8762cffadb64bfe7de83547834230c 100644 GIT binary patch delta 21 ccmZ3fwNh&X4=;zIse*xlm66G25nfRa06^0O?*IS* delta 21 ccmZ3fwNh&X4=;y-g@S>Bm7)1&5nfRa06_Hw^8f$< diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index f072eb93d2d..47231199f92 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/sphinx.pot b/sphinx/locale/sphinx.pot index 89ccb69c9cf..3ab79d5f865 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 5.0.0\n" +"Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:18+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \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 "" @@ -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 "" @@ -2975,7 +2975,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/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 1a427aa8b2181fbd719886873cb67b89957eaa9d..70714fa6cfd2af1e0c7d363b3d7ff6a99e666861 100644 GIT binary patch delta 23 fcmbR8gk{PTmJJ&haTuB^7#LU?nQY# delta 23 fcmbR8gk{PTmJJ&haTr)A7#LU?ns45@D7qg2cEAaS diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 8cbfa0246d9..c3c8ecda1f1 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -523,8 +523,8 @@ msgstr "s’u gjet figurë e përshtatshme për montuesin %s: %s" msgid "building [mo]: " msgstr "po montohet [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 "po shkruhet përfundim… " @@ -611,16 +611,16 @@ msgstr "%s të shtuar, %s të ndryshuar, %s të hequr" msgid "reading sources... " msgstr "po lexohen burime… " -#: 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 "po pritet për workers…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "emra dokumentesh për shkrim: %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 "po përgatiten dokumente" @@ -2959,7 +2959,7 @@ msgstr "S’u arrit të merre një nënshkrim metode për %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "U gjet __slots__ i pavlefshëm në %s. U shpërfill." -#: 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 "S’u arrit të përtypej një vlerë parazgjedhje argumenti për %r: %s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index e96e90a2f9b95d7e1503f9b086471159f0ac9793..4cb295a00f4c285d2299db02fe50ac114e722d25 100644 GIT binary patch delta 21 dcmccQdC7CbSs@NXQw0M9D, 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\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/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 0b7616adb0f1ed18af761c9ef025e4b2436b9b4f..1a1b4278737ad421dc387cfa0e35d19e95021786 100644 GIT binary patch delta 19 acmX@Xa)M<-2Zy1lf`NgRk;%phI~V~!u?9H+ delta 19 acmX@Xa)M<-2Zw=$f`NgRq4~xMI~V~!&jvjJ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 53c047af7fd..15186458b42 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 1b2a6bcfd0f69fba34a2c82ba3c8a6f31e375788..8df4403b3867c34d1ea224a4aefb930d6f04e32a 100644 GIT binary patch delta 19 acmX@ia+qa82Zy1lf`NgRk;%phn;8K<^9Cva delta 19 acmX@ia+qa82Zw=$f`NgRq4~xMn;8K=5e6;* diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index adcf298f125..7cd8a7e82c7 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index d954b5f41f87fc41f5d7c5c6ac2d5251c105a595..4521e62847edbce71d21e4029b17da57ed68b1d7 100644 GIT binary patch delta 21 ccmaE4^2lVvIROqsQw0M9D3k3rMD?{_m*93Yv0b8aAdjJ3c diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 67613284532..f2e31843145 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index ff066267f6439123c909dc03f896f6e36a16d048..e21ff600c2e44e302f24f476096e4adc0433b13f 100644 GIT binary patch delta 19 acmaFK{E~S>2Zy1lf`NgRk;%phk&FOCbp{#$ delta 19 acmaFK{E~S>2Zw=$f`NgRq4~xMk&FOClLj6D diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index e7b3ec98ca8..5af3d64a912 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index b99fd7a590583454be90362e393336af2d5de3ab..e0b82d66ce5d6aa42051f756ff816d0a619d27bf 100644 GIT binary patch delta 23 fcmZ2?f_dEu<_%M7I1Eh{3=FJ{Og7J{nUoFyajyvl delta 23 fcmZ2?f_dEu<_%M7I1DTl3=FIc%{R}fnUoFyanT70 diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 76806067123..ffb2a3bfc67 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -526,8 +526,8 @@ msgstr "%s oluşturucu için uygun bir resim bulunamadı: %s" msgid "building [mo]: " msgstr "[mo] oluşturuluyor: " -#: 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 "çıktı yazılıyor..." @@ -614,16 +614,16 @@ msgstr "%s eklendi, %s değiştirildi, %s kaldırıldı" msgid "reading sources... " msgstr "kaynaklar okunuyor..." -#: 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 "çalışanlar için bekleniyor..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "yazmak için belge adları: %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 "belgeler hazırlanıyor" @@ -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/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index c86893014d1998909a4690229071abad27f38701..3d75f96c56cbb4b4db7086541f370c29bcc85f0e 100644 GIT binary patch delta 21 ccmZ2#veab5VIB@cQw0M9Db%7 delta 21 ccmZ2#veab5VIB?x3k3rMD?{_mr+K1y0Z^I-wEzGB diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index b63581a2389..19da822c1e9 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index bfcb4fd906cd991b49987091ad8e2e399d8ef62c..74eaf698e4e57ddec064da2047a3805538edee1a 100644 GIT binary patch delta 21 dcmcbtcUf=4LS7C-Qw0M9D, 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\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/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 174709302d4e1d5988abc10b5f3b117063cb7478..3c75dab2c59afe34ae37c216e0ed91873e24017a 100644 GIT binary patch delta 19 acmaFP{G5402Zy1lf`NgRk;%ph;fw%7DFze( delta 19 acmaFP{G5402Zw=$f`NgRq4~xM;fw%7M+O)G diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 05d7c293ba4..76e873e0e5d 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index f06bfd92f1f1e55fe8dae6cedbe6592a0a90e0e8..9e69ec0e3b41cfa93efeafb3a6f3b77659588e3c 100644 GIT binary patch delta 23 fcmbRKhk5!R<_-I%aTuB^7#LU?nQT5bEifGbdcX;W delta 23 fcmbRKhk5!R<_-I%aTr)A7#LU?nr}WfEifGbdg2L+ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 099b9a3fe3a..a22ccb54514 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-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-15 00:24+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" @@ -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 "写入文档:%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 "" 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 "" From 92fcac321be6598e22877465b3d60730aa24f1f1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 19:05:17 +0900 Subject: [PATCH 11/33] test: Add *args and **kwargs to testcase of target.typehints --- .../test-ext-autodoc/target/typehints.py | 4 ++- tests/test_ext_autodoc_configs.py | 36 +++++++++++++------ 2 files changed, 29 insertions(+), 11 deletions(-) diff --git a/tests/roots/test-ext-autodoc/target/typehints.py b/tests/roots/test-ext-autodoc/target/typehints.py index 6b0d6142c1c..4acfc891125 100644 --- a/tests/roots/test-ext-autodoc/target/typehints.py +++ b/tests/roots/test-ext-autodoc/target/typehints.py @@ -94,8 +94,10 @@ def missing_attr(c, class _ClassWithDocumentedInit: """Class docstring.""" - def __init__(self, x: int) -> None: + def __init__(self, x: int, *args: int, **kwargs: int) -> None: """Init docstring. :param x: Some integer + :param args: Some integer + :param kwargs: Some integer """ diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index fdb82b1b928..12ec0e022b7 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1034,22 +1034,30 @@ def test_autodoc_typehints_description_with_documented_init(app): ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) --\n' + ' * **x** (*int*) --\n' + '\n' + ' * **args** (*int*) --\n' + '\n' + ' * **kwargs** (*int*) --\n' '\n' ' Return type:\n' ' None\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' '\n' ' Return type:\n' ' None\n' == context) @@ -1066,16 +1074,20 @@ def test_autodoc_typehints_description_with_documented_init_no_undoc(app): ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' == context) + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' == context) @pytest.mark.sphinx('text', testroot='ext-autodoc', @@ -1092,16 +1104,20 @@ def test_autodoc_typehints_description_with_documented_init_no_undoc_doc_rtype(a ) app.build() context = (app.outdir / 'index.txt').read_text(encoding='utf8') - assert ('class target.typehints._ClassWithDocumentedInit(x)\n' + assert ('class target.typehints._ClassWithDocumentedInit(x, *args, **kwargs)\n' '\n' ' Class docstring.\n' '\n' - ' __init__(x)\n' + ' __init__(x, *args, **kwargs)\n' '\n' ' Init docstring.\n' '\n' ' Parameters:\n' - ' **x** (*int*) -- Some integer\n' == context) + ' * **x** (*int*) -- Some integer\n' + '\n' + ' * **args** (*int*) -- Some integer\n' + '\n' + ' * **kwargs** (*int*) -- Some integer\n' == context) @pytest.mark.sphinx('text', testroot='ext-autodoc', From d8a540e92281e5cf80a2b045ddc22e93bd93e7f5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 14 May 2022 23:00:54 +0900 Subject: [PATCH 12/33] Fix #9575: autodoc: Return annotation should not be shown --- CHANGES | 3 +++ sphinx/ext/autodoc/typehints.py | 12 ++++++++++-- tests/test_ext_autodoc_configs.py | 3 --- 3 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 424a12eaae6..291661b28df 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #9575: autodoc: The annotation of return value should not be shown when + ``autodoc_typehints="description"`` + Testing -------- diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index 06768168eb7..d912cd7d501 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -59,7 +59,10 @@ def merge_typehints(app: Sphinx, domain: str, objtype: str, contentnode: Element for field_list in field_lists: if app.config.autodoc_typehints_description_target == "all": - modify_field_list(field_list, annotations[fullname]) + if objtype == 'class': + modify_field_list(field_list, annotations[fullname], suppress_rtype=True) + else: + modify_field_list(field_list, annotations[fullname]) elif app.config.autodoc_typehints_description_target == "documented_params": augment_descriptions_with_types( field_list, annotations[fullname], force_rtype=True @@ -83,7 +86,8 @@ def insert_field_list(node: Element) -> nodes.field_list: return field_list -def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> None: +def modify_field_list(node: nodes.field_list, annotations: Dict[str, str], + suppress_rtype: bool = False) -> None: arguments: Dict[str, Dict[str, bool]] = {} fields = cast(Iterable[nodes.field], node) for field in fields: @@ -124,6 +128,10 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No node += field if 'return' in annotations and 'return' not in arguments: + annotation = annotations['return'] + if annotation == 'None' and suppress_rtype: + return + field = nodes.field() field += nodes.field_name('', 'rtype') field += nodes.field_body('', nodes.paragraph('', annotation)) diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index fdb82b1b928..c075a8e2d60 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -1041,9 +1041,6 @@ def test_autodoc_typehints_description_with_documented_init(app): ' Parameters:\n' ' **x** (*int*) --\n' '\n' - ' Return type:\n' - ' None\n' - '\n' ' __init__(x)\n' '\n' ' Init docstring.\n' From 06a9139308c15058087040ddff0f2ca9a4335360 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 20:43:04 +0900 Subject: [PATCH 13/33] Fix #9648: autodoc: *args and **kwargs entries are duplicated In basic usage of autodoc (docstring), `args` and `kwargs` arguments are marked up without stars. But numpydoc style recommends to mark them up with stars. This adds support for starred arguments in docstrings to `autodoc_typehints` feature. --- CHANGES | 3 ++ sphinx/ext/autodoc/typehints.py | 20 +++++++-- tests/roots/test-ext-napoleon/conf.py | 5 +++ tests/roots/test-ext-napoleon/index.rst | 6 +++ .../test-ext-napoleon/mypackage/__init__.py | 0 .../test-ext-napoleon/mypackage/typehints.py | 11 +++++ tests/roots/test-ext-napoleon/typehints.rst | 5 +++ tests/test_ext_napoleon_docstring.py | 45 +++++++++++++++++++ 8 files changed, 92 insertions(+), 3 deletions(-) create mode 100644 tests/roots/test-ext-napoleon/conf.py create mode 100644 tests/roots/test-ext-napoleon/index.rst create mode 100644 tests/roots/test-ext-napoleon/mypackage/__init__.py create mode 100644 tests/roots/test-ext-napoleon/mypackage/typehints.py create mode 100644 tests/roots/test-ext-napoleon/typehints.rst diff --git a/CHANGES b/CHANGES index 424a12eaae6..dfbd6bd5364 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #9648: autodoc: ``*args`` and ``**kwargs`` entries are duplicated when + ``autodoc_typehints="description"`` + Testing -------- diff --git a/sphinx/ext/autodoc/typehints.py b/sphinx/ext/autodoc/typehints.py index 06768168eb7..b18107c8479 100644 --- a/sphinx/ext/autodoc/typehints.py +++ b/sphinx/ext/autodoc/typehints.py @@ -111,7 +111,15 @@ def modify_field_list(node: nodes.field_list, annotations: Dict[str, str]) -> No if name == 'return': continue - arg = arguments.get(name, {}) + if '*' + name in arguments: + name = '*' + name + arguments.get(name) + elif '**' + name in arguments: + name = '**' + name + arguments.get(name) + else: + arg = arguments.get(name, {}) + if not arg.get('type'): field = nodes.field() field += nodes.field_name('', 'type ' + name) @@ -159,13 +167,19 @@ def augment_descriptions_with_types( has_type.add('return') # Add 'type' for parameters with a description but no declared type. - for name in annotations: + for name, annotation in annotations.items(): if name in ('return', 'returns'): continue + + if '*' + name in has_description: + name = '*' + name + elif '**' + name in has_description: + name = '**' + name + if name in has_description and name not in has_type: field = nodes.field() field += nodes.field_name('', 'type ' + name) - field += nodes.field_body('', nodes.paragraph('', annotations[name])) + field += nodes.field_body('', nodes.paragraph('', annotation)) node += field # Add 'rtype' if 'return' is present and 'rtype' isn't. diff --git a/tests/roots/test-ext-napoleon/conf.py b/tests/roots/test-ext-napoleon/conf.py new file mode 100644 index 00000000000..502fb5a9de9 --- /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 00000000000..4c013b75b2e --- /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 00000000000..e69de29bb2d 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 00000000000..526b78e40bb --- /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 00000000000..43c61f6d240 --- /dev/null +++ b/tests/roots/test-ext-napoleon/typehints.rst @@ -0,0 +1,5 @@ +typehints +========= + +.. automodule:: mypackage.typehints + :members: diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index bdf50f516db..6db8979320a 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -2593,3 +2593,48 @@ def test_pep526_annotations(self): """ print(actual) assert expected == actual + + +@pytest.mark.sphinx('text', testroot='ext-napoleon', + confoverrides={'autodoc_typehints': 'description', + 'autodoc_typehints_description_target': 'all'}) +def test_napoleon_and_autodoc_typehints_description_all(app, status, warning): + app.build() + content = (app.outdir / 'typehints.txt').read_text(encoding='utf-8') + assert content == ( + 'typehints\n' + '*********\n' + '\n' + 'mypackage.typehints.hello(x, *args, **kwargs)\n' + '\n' + ' Parameters:\n' + ' * **x** (*int*) -- X\n' + '\n' + ' * ***args** (*int*) -- Additional arguments.\n' + '\n' + ' * ****kwargs** (*int*) -- Extra arguments.\n' + '\n' + ' Return type:\n' + ' None\n' + ) + + +@pytest.mark.sphinx('text', testroot='ext-napoleon', + confoverrides={'autodoc_typehints': 'description', + 'autodoc_typehints_description_target': 'documented_params'}) +def test_napoleon_and_autodoc_typehints_description_documented_params(app, status, warning): + app.build() + content = (app.outdir / 'typehints.txt').read_text(encoding='utf-8') + assert content == ( + 'typehints\n' + '*********\n' + '\n' + 'mypackage.typehints.hello(x, *args, **kwargs)\n' + '\n' + ' Parameters:\n' + ' * **x** (*int*) -- X\n' + '\n' + ' * ***args** (*int*) -- Additional arguments.\n' + '\n' + ' * ****kwargs** (*int*) -- Extra arguments.\n' + ) From 6065ab676c08fe37b84bfd0a0146ab08754c8b92 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 18 Jan 2022 02:11:19 +0900 Subject: [PATCH 14/33] Fix #10110: sphinx-build: Emit builder-finished before shutdown The error on the builder-finished event has been ignored for the calculation of the exit code. This emits the event earilier step to be calculated correctly. --- CHANGES | 3 +++ sphinx/application.py | 57 ++++++++++++++++++++++--------------------- 2 files changed, 32 insertions(+), 28 deletions(-) diff --git a/CHANGES b/CHANGES index 424a12eaae6..f12835a5961 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #10110: sphinx-build: exit code is not changed when error is raised on + builder-finished event + Testing -------- diff --git a/sphinx/application.py b/sphinx/application.py index 57e22914597..ccd4bf3ac7e 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -328,33 +328,7 @@ def build(self, force_all: bool = False, filenames: List[str] = None) -> None: self.builder.compile_update_catalogs() self.builder.build_update() - if self._warncount and self.keep_going: - self.statuscode = 1 - - status = (__('succeeded') if self.statuscode == 0 - else __('finished with problems')) - if self._warncount: - if self.warningiserror: - if self._warncount == 1: - msg = __('build %s, %s warning (with warnings treated as errors).') - else: - msg = __('build %s, %s warnings (with warnings treated as errors).') - else: - if self._warncount == 1: - msg = __('build %s, %s warning.') - else: - msg = __('build %s, %s warnings.') - - logger.info(bold(msg % (status, self._warncount))) - else: - logger.info(bold(__('build %s.') % status)) - - if self.statuscode == 0 and self.builder.epilog: - logger.info('') - logger.info(self.builder.epilog % { - 'outdir': relpath(self.outdir), - 'project': self.config.project - }) + self.events.emit('build-finished', None) except Exception as err: # delete the saved env to force a fresh build next time envfile = path.join(self.doctreedir, ENV_PICKLE_FILENAME) @@ -362,8 +336,35 @@ def build(self, force_all: bool = False, filenames: List[str] = None) -> None: os.unlink(envfile) self.events.emit('build-finished', err) raise + + if self._warncount and self.keep_going: + self.statuscode = 1 + + status = (__('succeeded') if self.statuscode == 0 + else __('finished with problems')) + if self._warncount: + if self.warningiserror: + if self._warncount == 1: + msg = __('build %s, %s warning (with warnings treated as errors).') + else: + msg = __('build %s, %s warnings (with warnings treated as errors).') + else: + if self._warncount == 1: + msg = __('build %s, %s warning.') + else: + msg = __('build %s, %s warnings.') + + logger.info(bold(msg % (status, self._warncount))) else: - self.events.emit('build-finished', None) + logger.info(bold(__('build %s.') % status)) + + if self.statuscode == 0 and self.builder.epilog: + logger.info('') + logger.info(self.builder.epilog % { + 'outdir': relpath(self.outdir), + 'project': self.config.project + }) + self.builder.cleanup() # ---- general extensibility interface ------------------------------------- From c63d4741e9f7217f7db417eac05a225164cee7f7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 23:37:37 +0900 Subject: [PATCH 15/33] Fix #10344: docs: Update explanation for copying static files manually --- doc/development/theming.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index f203429ac4d..6869aeffeb5 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -248,11 +248,11 @@ Now, you will have access to this function in jinja like so: Add your own static files to the build assets ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -If you are packaging your own build assets with an extension -(e.g., a CSS or JavaScript file), you need to ensure that they are placed -in the ``_static/`` folder of HTML outputs. To do so, you may copy them directly -into a build's ``_static/`` folder at build time, generally via an event hook. -Here is some sample code to accomplish this: +By default, Sphinx copies static files on the ``static/`` directory of the template +directory. However, if your package needs to place static files outside of the +``static/`` directory for some reasons, you need to copy them to the ``_static/`` +directory of HTML outputs manually at the build via an event hook. Here is a sample +code to accomplish this: .. code-block:: python From 3e20ee68460f4e831b6bfd90f798372fbdef4a6a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 15 May 2022 23:47:15 +0900 Subject: [PATCH 16/33] CI: Separate coverage task from main.yml --- .github/workflows/coverage.yml | 32 ++++++++++++++++++++++++++++++++ .github/workflows/main.yml | 29 ----------------------------- 2 files changed, 32 insertions(+), 29 deletions(-) create mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 00000000000..12945f66585 --- /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 1debcaaf930..daa766c39fb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -56,32 +56,3 @@ jobs: run: python -m pip install -U pip tox - name: Run Tox run: tox -e py -- -vv - - coverage: - # only run on pushes to branches in the sphinx-doc/sphinx repo - if: github.repository_owner == 'sphinx-doc' && github.event_name == 'push' - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v3 - - name: Set up Python 3 - uses: actions/setup-python@v3 - with: - python-version: 3 - - - name: Check Python version - run: python --version - - - name: Install graphviz - run: sudo apt-get install graphviz - - - name: Install dependencies - run: python -m pip install -U pip tox pytest-cov - - - name: Run Tox - run: tox --sitepackages -e py -- -vv - env: - PYTEST_ADDOPTS: "--cov ./ --cov-append --cov-config setup.cfg" - - - name: codecov - uses: codecov/codecov-action@v3 From b78186d3b5bbb895bdb4f10a98db7ad4dea71298 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 16 May 2022 02:16:57 +0900 Subject: [PATCH 17/33] Fix #9096: sphinx-build: the value of progress bar for paralle build is wrong The value of progress bar (reading and writing) should be increased just after each task is finished. --- CHANGES | 1 + sphinx/builders/__init__.py | 32 +++++++++++++++++++++++--------- sphinx/util/__init__.py | 17 +++++++++++------ 3 files changed, 35 insertions(+), 15 deletions(-) diff --git a/CHANGES b/CHANGES index f65b0b07ab2..240f12e1066 100644 --- a/CHANGES +++ b/CHANGES @@ -39,6 +39,7 @@ Bugs fixed * #9575: autodoc: The annotation of return value should not be shown when ``autodoc_typehints="description"`` +* #9096: sphinx-build: the value of progress bar for paralle build is wrong Testing -------- diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 45188cd565c..4936ecf368c 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -25,6 +25,7 @@ from sphinx.util.osutil import SEP, ensuredir, relative_uri, relpath from sphinx.util.parallel import ParallelTasks, SerialTasks, make_chunks, parallel_available from sphinx.util.tags import Tags +from sphinx.util.typing import NoneType # side effect: registers roles and directives from sphinx import directives # NOQA isort:skip @@ -429,6 +430,13 @@ def _read_serial(self, docnames: List[str]) -> None: self.read_doc(docname) def _read_parallel(self, docnames: List[str], nproc: int) -> None: + chunks = make_chunks(docnames, nproc) + + # create a statas_iterator to step progressbar after reading a document + # (see: ``merge()`` function) + progress = status_iterator(chunks, __('reading sources... '), "purple", + len(chunks), self.app.verbosity) + # clear all outdated docs at once for docname in docnames: self.events.emit('env-purge-doc', self.env, docname) @@ -445,16 +453,15 @@ def merge(docs: List[str], otherenv: bytes) -> None: env = pickle.loads(otherenv) self.env.merge_info_from(docs, env, self.app) - tasks = ParallelTasks(nproc) - chunks = make_chunks(docnames, nproc) + next(progress) - for chunk in status_iterator(chunks, __('reading sources... '), "purple", - len(chunks), self.app.verbosity): + tasks = ParallelTasks(nproc) + for chunk in chunks: tasks.add_task(read_process, chunk, merge) # make sure all threads have finished - logger.info(bold(__('waiting for workers...'))) tasks.join() + logger.info('') def read_doc(self, docname: str) -> None: """Parse a file and add/update inventory entries for the doctree.""" @@ -563,19 +570,26 @@ def write_process(docs: List[Tuple[str, nodes.document]]) -> None: tasks = ParallelTasks(nproc) chunks = make_chunks(docnames, nproc) + # create a statas_iterator to step progressbar after reading a document + # (see: ``on_chunk_done()`` function) + progress = status_iterator(chunks, __('reading sources... '), "purple", + len(chunks), self.app.verbosity) + + def on_chunk_done(args: List[Tuple[str, NoneType]], result: NoneType) -> None: + next(progress) + self.app.phase = BuildPhase.RESOLVING - for chunk in status_iterator(chunks, __('writing output... '), "darkgreen", - len(chunks), self.app.verbosity): + for chunk in chunks: arg = [] for docname in chunk: doctree = self.env.get_and_resolve_doctree(docname, self) self.write_doc_serialized(docname, doctree) arg.append((docname, doctree)) - tasks.add_task(write_process, arg) + tasks.add_task(write_process, arg, on_chunk_done) # make sure all threads have finished - logger.info(bold(__('waiting for workers...'))) tasks.join() + logger.info('') def prepare_writing(self, docnames: Set[str]) -> None: """A place where you can add logic before :meth:`write_doc` is run""" diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index cd65b94b966..b5a49a9d118 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -13,8 +13,8 @@ from importlib import import_module from os import path from time import mktime, strptime -from typing import (IO, TYPE_CHECKING, Any, Callable, Dict, Iterable, Iterator, List, Optional, - Pattern, Set, Tuple, Type) +from typing import (IO, TYPE_CHECKING, Any, Callable, Dict, Generator, Iterable, List, + Optional, Pattern, Set, Tuple, Type, TypeVar) from urllib.parse import parse_qsl, quote_plus, urlencode, urlsplit, urlunsplit from sphinx.errors import ExtensionError, FiletypeNotFoundError, SphinxParallelError @@ -445,8 +445,12 @@ def display_chunk(chunk: Any) -> str: return str(chunk) -def old_status_iterator(iterable: Iterable, summary: str, color: str = "darkgreen", - stringify_func: Callable[[Any], str] = display_chunk) -> Iterator: +T = TypeVar('T') + + +def old_status_iterator(iterable: Iterable[T], summary: str, color: str = "darkgreen", + stringify_func: Callable[[Any], str] = display_chunk + ) -> Generator[T, None, None]: l = 0 for item in iterable: if l == 0: @@ -460,9 +464,10 @@ def old_status_iterator(iterable: Iterable, summary: str, color: str = "darkgree # new version with progress info -def status_iterator(iterable: Iterable, summary: str, color: str = "darkgreen", +def status_iterator(iterable: Iterable[T], summary: str, color: str = "darkgreen", length: int = 0, verbosity: int = 0, - stringify_func: Callable[[Any], str] = display_chunk) -> Iterable: + stringify_func: Callable[[Any], str] = display_chunk + ) -> Generator[T, None, None]: if length == 0: yield from old_status_iterator(iterable, summary, color, stringify_func) return From 6ffe881f55939d2ee3b67b0ace09e9255199ea60 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 15:45:32 +0200 Subject: [PATCH 18/33] Test for issue #10456: removing meta-fields Add two meta-fields to an appropriate test case. Currently the test fails, because of bug #10456. The next commit fixes the issue. --- tests/test_domain_py.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 61f595c23ce..014067e8459 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -999,7 +999,9 @@ def test_info_field_list(app): text = (".. py:module:: example\n" ".. py:class:: Class\n" "\n" + " :meta blah: this meta-field must not show up in the toc-tree\n" " :param str name: blah blah\n" + " :meta another meta field:\n" " :param age: blah blah\n" " :type age: int\n" " :param items: blah blah\n" From d1ba8d598d3671a1b4c67d53b8cb34f0a6c1e9ad Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 15:51:37 +0200 Subject: [PATCH 19/33] fix #10456: fix sphinx.domain.python.filter_meta_fields() The function now removes all "meta"-fields from a field-list. --- sphinx/domains/python.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 8fc18532554..a634a51d2b2 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -1068,11 +1068,11 @@ def filter_meta_fields(app: Sphinx, domain: str, objtype: str, content: Element) for node in content: if isinstance(node, nodes.field_list): fields = cast(List[nodes.field], node) - for field in fields: + # removing list items while iterating the list needs reversed() + for field in reversed(fields): field_name = cast(nodes.field_body, field[0]).astext().strip() if field_name == 'meta' or field_name.startswith('meta '): node.remove(field) - break class PythonModuleIndex(Index): From 534b8f7294aa53e1367501d1709a022f7dd62252 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 15:55:19 +0200 Subject: [PATCH 20/33] Update CHANGES for #10456 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index bc32362ae1c..8217432b49f 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #10456: filter_meta_fields fails to remove more than one meta-field from a field_list + Testing -------- From 77eaad1ab2d4738455b9f44addcd78dd09b96fea Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 16:11:53 +0200 Subject: [PATCH 21/33] update CHANGES (line was too long) --- CHANGES | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 8217432b49f..7d6c5f0dc22 100644 --- a/CHANGES +++ b/CHANGES @@ -16,7 +16,7 @@ Features added Bugs fixed ---------- -* #10456: filter_meta_fields fails to remove more than one meta-field from a field_list +* #10456: filter_meta_fields fails to remove more than one meta-field Testing -------- @@ -213,7 +213,7 @@ Bugs fixed * #9924: LaTeX: multi-line :rst:dir:`cpp:function` directive has big vertical spacing in Latexpdf * #10158: LaTeX: excessive whitespace since v4.4.0 for undocumented - variables/structure members + variables/structure members * #10175: LaTeX: named footnote reference is linked to an incorrect footnote if the name is also used in the different document * #10269: manpage: Failed to resolve the title of :ref: cross references @@ -1086,7 +1086,7 @@ Bugs fixed inside function type signatures * #8780: LaTeX: long words in narrow columns may not be hyphenated * #8788: LaTeX: ``\titleformat`` last argument in sphinx.sty should be - bracketed, not braced (and is anyhow not needed) + bracketed, not braced (and is anyhow not needed) * #8849: LaTex: code-block printed out of margin (see the opt-in LaTeX syntax boolean :ref:`verbatimforcewraps ` for use via the :ref:`'sphinxsetup' ` key of ``latex_elements``) From fcb54ae025431a8fc526f5056bfe99d6e8c545b6 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Mon, 16 May 2022 16:38:24 +0200 Subject: [PATCH 22/33] update CHANGES again: revert unintended white-space changes --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 7d6c5f0dc22..913e54bf4b7 100644 --- a/CHANGES +++ b/CHANGES @@ -213,7 +213,7 @@ Bugs fixed * #9924: LaTeX: multi-line :rst:dir:`cpp:function` directive has big vertical spacing in Latexpdf * #10158: LaTeX: excessive whitespace since v4.4.0 for undocumented - variables/structure members + variables/structure members * #10175: LaTeX: named footnote reference is linked to an incorrect footnote if the name is also used in the different document * #10269: manpage: Failed to resolve the title of :ref: cross references @@ -1086,7 +1086,7 @@ Bugs fixed inside function type signatures * #8780: LaTeX: long words in narrow columns may not be hyphenated * #8788: LaTeX: ``\titleformat`` last argument in sphinx.sty should be - bracketed, not braced (and is anyhow not needed) + bracketed, not braced (and is anyhow not needed) * #8849: LaTex: code-block printed out of margin (see the opt-in LaTeX syntax boolean :ref:`verbatimforcewraps ` for use via the :ref:`'sphinxsetup' ` key of ``latex_elements``) From c470402cfbeb14cf1c85b27437f7649ef0da61e5 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 22 May 2022 00:19:01 +0000 Subject: [PATCH 23/33] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7947 -> 7947 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 492 -> 492 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7976 -> 7976 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5587 -> 5587 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2424 -> 2424 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8265 -> 8265 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6214 -> 6214 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13160 -> 13160 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11216 -> 11216 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82357 -> 82357 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14119 -> 14119 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1864 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70066 -> 70066 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33950 -> 33950 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6727 -> 6727 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 100244 -> 100244 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 84850 -> 84850 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 503 -> 503 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4947 -> 4947 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 98993 -> 98993 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17189 -> 17189 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11533 -> 11533 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 60856 -> 60856 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3082 -> 3082 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10780 -> 10780 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 85498 -> 85498 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84645 -> 84645 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7104 -> 7104 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6786 -> 6786 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2011 -> 2011 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6766 -> 6766 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8869 -> 8869 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19426 -> 19426 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29699 -> 29699 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 493 -> 493 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81834 -> 81834 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 7984 -> 7984 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8822 -> 8822 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16427 -> 16427 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo | Bin 643 -> 643 bytes sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3602 -> 3602 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68704 -> 68704 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5417 -> 5417 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78356 -> 78356 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9426 -> 9426 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6754 -> 6754 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 647 -> 647 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58414 -> 58414 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6693 -> 6693 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5971 -> 5971 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 65047 -> 65047 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 14 +++++++------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 516 -> 516 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 14 +++++++------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41261 -> 41261 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 14 +++++++------- 127 files changed, 244 insertions(+), 244 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 298c6c94302c3fc106f22627caef3ba5c9c180bf..a3f3ce429c4a44dd557c7901582bb5db1c7cf597 100644 GIT binary patch delta 21 ccmeCS>$cmVB*0;0q+noRWoWTkOW+|N079V!-~a#s delta 21 ccmeCS>$cmVB*0-{p, 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "تجهيز المستندات" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 8fcc8de8813aab020f63acd09c483230e00fc2bc..b7c1db47b309eb16413d5583ebd1c89473ca6428 100644 GIT binary patch delta 19 acmaFE{Dyf#2Zxc7f`NgRp~c1tF^m91;07cB delta 19 acmaFE{Dyf#2Zw=$f`NgRq4~xMF^m921qLSo diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 92ea33328c7..de0420f1693 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index b2c16091e80b95f7bf4c0605150233ba52a47ce1..30dc9b19772ea136eb345d0c4770d1368595322f 100644 GIT binary patch delta 21 ccmZ2sx592iFE59Yk%EDNm7&Gvsl1Z~0Zz6Cp8x;= delta 21 ccmZ2sx592iFE59Ig@S>Bm7)3Osl1Z~0Z!fqq5uE@ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 4671ee048db..5bde227b371 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 97c460ca73a550a27d7a03ba6f419ddef764357d..96f2d6e8e69f4442a5b131b2b0c0afe2ddef0e03 100644 GIT binary patch delta 21 ccmcbteOY@$1uut@k%EDNm7&Gv2Hs!}08noRTmS$7 delta 21 ccmcbteOY@$1uuu8se*xlm66Hj2Hs!}08n)XTL1t6 diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 95966b01b40..c169b9368e4 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 60e76a8e37bfa36f32d023e96829c194f6a408e3..ddf592bc7ac1728c651569334cd11a6fbaf8fbdd 100644 GIT binary patch delta 21 ccmew%^h0PvDJzGOk%EDNm7&GvTGrpp08;=50RR91 delta 21 ccmew%^h0PvDJzG8g@S>Bm7)3OTGrpp08=Oj1ONa4 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 2b03e41ce00..60c31922149 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 3fe57c04282e2cf9bc779f64d9a5f79be0ed4d07..b1be6ebf3833575c360fcd26ef7dd8761bd13746 100644 GIT binary patch delta 21 dcmX@, 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index d18699b174bcb042a6035b1412d00b650619d1eb..1f858b6a31b82ff34ddb9b6988ca948b1b8cf658 100644 GIT binary patch delta 21 ccmX?RaLi!C7CsImBLxEkD?^LTd-%FI0aR87{r~^~ delta 21 ccmX?RaLi!C7CsIG3k3rMD?{_md-%FI0aShm0RR91 diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 1b1763d5cbf..2d37f0d955f 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer , 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 1e4aaab7f16b4a6eafedd48266a1da0803a883b8..b7dd563db288f08f68e7049186b47651bf86724c 100644 GIT binary patch delta 21 dcmaEn_9AV=PI(R^BLxEkD?^LT2j!Ow0{~-$2mt^9 delta 21 dcmaEn_9AV=PI(SPQw0M9D, 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 86c0caa328422712a08b091c9a3dd5f9f6f9ae0e..0ce2b7f36c574b09aa00034c7416a855ef2ff5c8 100644 GIT binary patch delta 21 ccmcZ*ej$8=t`vunk%EDNm7&FEQ>od408%Cfg8%>k delta 21 ccmcZ*ej$8=t`vuXg@S>Bm7)1&Q>od408&l{h5!Hn diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 3fb0d362dad..aff4cad5259 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2018\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index a554522e59fdd7c280772278863410102331f9db..6dc5868d1401b2eab9aec5a48177f670ba40a42b 100644 GIT binary patch delta 23 fcmdnm%(}Iib;F8A4kIH40|P5Vi_IGvSq}gJX+Q{! delta 23 fcmdnm%(}Iib;F8A4ntD~0|P4~lg%3%Sq}gJX+{W( diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 96dd36648cf..c5891bc9a9f 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index c6da3de165d646fcbf5451d7e72b11c7aa1411f9..5f3754b9a4aee8a4764e18e3bc3d4ed4c1b2efd1 100644 GIT binary patch delta 19 acmX@de2#fS2Zxc7f`NgRp~c1tc8mZ&Yz4{y delta 19 acmX@de2#fS2Zy1lf`NgRk;%phc8mZ&a|Ou& diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index d6eb1a721c7..e184fc7db6d 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index e114d6aad23a1ca440286065d1d7bb7478bbe731..f068b23fa1c63ab413f70a50f80127fe4a91413a 100644 GIT binary patch delta 21 ccmZ3Uw>)pdbvX_rBLxEkD?^LT_vJh!09+XdZvX%Q delta 21 ccmZ3Uw>)pdbvX`0Qw0M9D> diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 4294e68bd42..914b2be1f4e 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index fc69e2adc49eb7cd9a299f34da55c476f7d1d83d..df5a6469cd892d883934abbc1cf4eea66e59874b 100644 GIT binary patch delta 21 ccmX@XcY<$&5etWrk%EDNm7&FED;7Rx07Jk9Bme*a delta 21 ccmX@XcY<$&5etW*se*xlm66G2D;7Rx07J$FBLDyZ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index cbc9bf1a280..d7d8e1d9d52 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tatsuro YOKOTA , 2021\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 1554dff91688265c28e8897ceac182d1911c0744..6e9c9dab3c8076fddc62f80047d8b8204a97d18a 100644 GIT binary patch delta 23 fcmdnAm}S#qmJM!`IE;)G3=FIcEjIg2N~s3`XTJzQ delta 23 fcmdnAm}S#qmJM!`I1DTl3=FIc%{Ti^N~s3`XXgk* diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 99d45697f30..589a604c6d6 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016,2021\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -529,8 +529,8 @@ msgstr "una imagen adecuada para %s constructor no encontrado: %s" msgid "building [mo]: " msgstr "compilando [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "escribiendo salida... " @@ -617,16 +617,16 @@ msgstr "%sañadido, %s cambiado, %s removido" msgid "reading sources... " msgstr "leyendo fuentes..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "Esperando a los workers..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames para escribir: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "preparando documentos" @@ -2965,7 +2965,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 788bd2c25a965f324bf01d70ea26ec13e0a681cc..411d90bfa5d8cd95ff726537bc8a589433dd23ce 100644 GIT binary patch delta 23 ecmbQ&$uzH%X@i{)hmnzjfq|8w#b!632nzsO00!{@ delta 23 ecmbQ&$uzH%X@i{)hk=EHfq|8w`DQnt2nzsOC, 2013-2022\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "väljundi kirjutamine... " @@ -614,16 +614,16 @@ msgstr "lisatud %s, muudetud %s, eemaldatud %s" msgid "reading sources... " msgstr "lähtefailide lugemine..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "dokumentide ettevalmistamine" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 8b71712a753faefac974b3349644be99eac7134b..97c633ca6951c01b4ebe9a32dc3167c7bf3d368a 100644 GIT binary patch delta 21 ccmX?Za@=Hth5(0=k%EDNm7&FE0|9X^07+#9f&c&j delta 21 ccmX?Za@=Hth5(0wg@S>Bm7)1&0|9X^07;Dng#Z8m diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index e19a8b17362..4fd1ea48930 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Asier Iturralde Sarasola , 2018\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 5752fad4ebd2d7991531dac63423719296ac0e0a..c3498948530934d1c586372c21c7bfde5a6838d0 100644 GIT binary patch delta 23 fcmbQz&o-r>Z9~^G4kIH40|P5Vi_MdkF+BtTW+e!a delta 23 fcmbQz&o-r>Z9~^G4ntD~0|P4~lg*QsF+BtTW-ADf diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 837dae42b26..c170ee9ee22 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F , 2020-2021\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index e706d40978a3ceb7b12ad5ba75b5b263de145030..bc9f9bbbdf8b8616dc26457bd92543d66e6f6113 100644 GIT binary patch delta 21 ccmaDL_CRdI88!|hBLxEkD?^LTSJ--309Dxs8vp, 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index df2096fb6b14ddcba7a4111ebebcd05e152ad794..a4cba10fc2c90362fba0a10c9b3508c3e1f4a436 100644 GIT binary patch delta 23 fcmew~jrG$s)(viJIE;)G3=FIcEjIhDQJD__as>#y delta 23 fcmew~jrG$s)(viJI1DTl3=FIc%{Tk4QJD__axDnI diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index b2b8fa1f97f..c86d68a8829 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2017-2019,2022\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -549,8 +549,8 @@ msgstr "l'image appropriée pour le constructeur %s n'a pas été trouvée : %s" msgid "building [mo]: " msgstr "Construction en cours [mo] : " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "Écriture... " @@ -637,16 +637,16 @@ msgstr "%s ajouté(s), %s modifié(s), %s supprimé(s)" msgid "reading sources... " msgstr "Lecture des sources... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "En attente des processus parallélisés..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "documents à écrire : %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "Document en préparation" @@ -2985,7 +2985,7 @@ msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "Invalide __slots__ trouvé sur %s. Ignoré." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Impossible d'analyser une valeur d'argument par défaut pour %r : %s" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index ca2f067c99dc83c6cae152d1da7d47f69167fc67..26b9e807930992b243ea0d752f32b47c98be7019 100644 GIT binary patch delta 19 acmey){GEA12Zxc7f`NgRp~c1t>5KqHf(AtZ delta 19 acmey){GEA12Zy1lf`NgRk;%ph>5KqHi3UUf diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index f34ffe9efeb..78f182b1e16 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 2519917fa33ee4dacabaa4a9ddd60afeef1d3858..f87a3646bd9679c6b890a968ee83aae5f00c0b1a 100644 GIT binary patch delta 21 dcmcbtc3Ex1OfC*1BLxEkD?^LT3%NFN002_W2JHX< delta 21 dcmcbtc3Ex1OfC)s3k3rMD?{_m3%NFN002_;2Jip? diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 7ce9fe4436c..9bc02e2d964 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2011\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index ce69c2aea31f7032a5c1b18a0a2bc7b180827f3f..900aeeafd0f7fae4911ac8e274308e0bc0d48826 100644 GIT binary patch delta 23 fcmdnk%C@nUZNr2P4kIH40|P5Vi_J4SB!2+_XblLq delta 23 fcmdnk%C@nUZNr2P4g(7X0|P5V^UX6lB!2+_Xf+7A diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index ccd0c6f751b..96afd9a8710 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Sumanjali Damarla , 2020\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -526,8 +526,8 @@ msgstr "%s निर्माता के लिए योग्य चित msgid "building [mo]: " msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "परिणाम लिखा जा रहा है..." @@ -614,16 +614,16 @@ msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया msgid "reading sources... " msgstr "स्रोतों को पढ़ा जा रहा है..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "कर्मियों की प्रतीक्षा हो रही है" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 6c891fa05a57424acbd6a3b57431ebd1306983d2..acfc3a256a470b0c481ac2a8a9cb05a76aa40c04 100644 GIT binary patch delta 19 acmeyy{Ec}+2Zxc7f`NgRp~c1tX^a3xTn0h_ delta 19 acmeyy{Ec}+2Zw=$f`NgRq4~xMX^a3xfd)kY diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 8d5ccd58d44..a1e4df09ac9 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index f116e0833f7d8578216be03eb6aa3b490cf4aae4..e34ae5be174a3089c787a5e4976ed8c9806c8680 100644 GIT binary patch delta 23 ecmZ45#<;YNal=-14kIH40|P5Vi_Lr0Go%4wKnIQh delta 23 ecmZ45#<;YNal=-14ntD~0|P4~lg)e8Go%4wMhA@m diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index e617884f4fe..27c14e7403e 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 0ac97d727eb520f5e72d499e669d33b52b48d52a..94bb063e67289c0104c29d0380467f0dd0cf488b 100644 GIT binary patch delta 21 ccmeB;>W$jqF2!MFq+noRWoWV4UuvHa07`ELTL1t6 delta 21 ccmeB;>W$jqF2!MJs$gJXWn{A1UuvHa07`WRS^xk5 diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index d00e963d64b..c3e77dbd36f 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 85077fab2a07a1878cfa56b840c7b06821392502..af85d57b624f85c56628cfc1f204f4263e40529f 100644 GIT binary patch delta 23 ecmdmSn|a4=<_%hH97aY81_oA!7MqRQ+R_1Twg_|p delta 23 ecmdmSn|a4=<_%hH90nE&1_oA!=9`V$+R_1T-UxR9 diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 032969cb9c0..33cdae6c5af 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: oon arfiandwi , 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -527,8 +527,8 @@ msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" msgid "building [mo]: " msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "menulis keluaran... " @@ -615,16 +615,16 @@ msgstr "%s ditambahkan, %s diubah, %s dihapus" msgid "reading sources... " msgstr "membaca sumber... " -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "menunggu workers..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "docnames yang akan ditulis: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "menyiapkan dokumen" @@ -2963,7 +2963,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 9225ec784f3277f7c3f8d14f16ec7f1ed0b84e22..16c6038ccdef5637ce074a1e515f1df160a361c1 100644 GIT binary patch delta 21 ccmeB@=#tp*pN+%FNWs9s%FtpnJ3BKg07s(*QUCw| delta 21 ccmeB@=#tp*pN+%NRKdW&%E)9hJ3BKg07t0>Q2+n{ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index fb29543548a..47a30b0693e 100644 --- a/sphinx/locale/is/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/is/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Tryggvi Kalman , 2021\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 7a917c3d55fc63f4af8a45393e238beb485a348c..66c42456edde0ba5ed7e88e40a62ac55335b1f44 100644 GIT binary patch delta 21 ccmbOeGACq1mL!Lfk%EDNm7&GvBFR+(08V2Dn*aa+ delta 21 ccmbOeGACq1mL!LPg@S>Bm7)3OBFR+(08Wbro&W#< diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index f277478d59d..e3d3e2b2173 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -528,8 +528,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -616,16 +616,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2964,7 +2964,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 675b7e9ab17cdddc20094e397030b8948e87785e..5f0e129beca4aea690195d90a81ee0b027b7131f 100644 GIT binary patch delta 23 fcmex0oAuXh)(yuNau^vY7#LU?T5LYIP-hJQeSrzp delta 23 fcmex0oAuXh)(yuNau`@B7#LU?nr}Y0P-hJQeW?l9 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 1a8e4115ee2..52f773cbb78 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: KaKkouo, 2021\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -539,8 +539,8 @@ msgstr "%sビルダー向けの画像形式が見つかりません: %s" msgid "building [mo]: " msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "出力中..." @@ -627,16 +627,16 @@ msgstr "%s 件追加, %s 件更新, %s 件削除" msgid "reading sources... " msgstr "ソースを読み込み中..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "ワーカーの終了を待っています..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "ドキュメントの出力準備中" @@ -2975,7 +2975,7 @@ msgstr "%s のメソッド・シグネチャの取得に失敗しました: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "無効な __slots__ が %s で見つかりました。無視されました。" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "%r の既定の引数値の解析に失敗しました: %s。" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 8f8985e77b1fd0b641120960a23444025f3ae6a6..c341ffb2e9d587c6a0693d8e012b21b6d484cbba 100644 GIT binary patch delta 23 fcmZ2Fm38S<)(viJIE;)G3=FIcEjIhD37-c5Wl{)I delta 23 fcmZ2Fm38S<)(viJI1Eh{3=FJ{Og8(i37-c5WmpJN diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index b47f5eff290..0bd74824424 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index c79cedd2c89f8d4bb6371c96e33afe308be5b112..e2531451f26546590281efcc74ec05317a73431b 100644 GIT binary patch delta 21 ccmX?Le!zUgQ~?enBLxEkD?^LTa|M*S0a08AVE_OC delta 21 ccmX?Le!zUgQ~?e{Qw0M9D, 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index e5457c59faafe69f35f72b565405766810883420..756b10e5d98ee526b37497edf78a61fe2c1f0315 100644 GIT binary patch delta 21 ccmZoNZ8F{9D8ON4q+noRWoWV4Q^1l706_Z%P5=M^ delta 21 ccmZoNZ8F{9D8ON0p\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index b02d96baba54076ca21f32fa63da8e578eb7218a..8b3a5e900e08507867c9c099ac81cabdbde1a9c3 100644 GIT binary patch delta 21 dcmcc3f17{9O=b=wBLxEkD?^LT51D^40{~U92ZR6s delta 21 dcmcc3f17{9O=b=Q3k3rMD?{_m51D^40{~Un2ZsOv diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 8b956d0cfc7..3fafe8434bd 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index acbed2ffd4e702e2c2db824907218c503e185a4c..79f32968fe940a0dbcc4694aaefffcc1e9c5c781 100644 GIT binary patch delta 21 ccmaE7^3G(#8vza@BLxEkD?^LTUj(W+0bh~_x&QzG delta 21 ccmaE7^3G(#8vzaj3k3rMD?{_mUj(W+0bjZYy#N3J diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 6f3d3b2e4b7..e9eea18e680 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 394c4546016f95770331873f2cee38de3ca4ccfd..934448a92db0949c186ef654aed81bb5e72f6844 100644 GIT binary patch delta 21 ccmZ4Ly3}>UYyl1UYyl1f3k3rMD?{_miv^g308gC;JOBUy diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 601ffe539d5..abe9bad56dc 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -524,8 +524,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -612,16 +612,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2960,7 +2960,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 3056775eb49d7e772f746f81c00737a208ec981f..9608fd4e16db44402d598b61fc2ac88c0fe7db1a 100644 GIT binary patch delta 23 fcmaDfo$=9h#trASIgE@H3=FIcEjC}*=2idzZ_@}4 delta 23 fcmaDfo$=9h#trASISfq|3=FJ{Og3NF=2idzZ`lY9 diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 627fb2221b1..e86e09cb1d9 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 61850c227a245687bf85c3956f0a18496f556425..d3186b81b9ec7fb491404d2a893cdb431b28bcaf 100644 GIT binary patch delta 23 ecmZpE!PxwQal=YS4kIH40|P5Vi_IGygNy)d3kWL! delta 23 ecmZpE!PxwQal=YS4g(7X0|P5V^UWI_gNy)dGYBpK diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 7ec50767c2d..7e3a72064c7 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: m_aciek , 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -526,8 +526,8 @@ msgstr "" msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "pisanie wyjścia..." @@ -614,16 +614,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2962,7 +2962,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 9d7e281da952eff0b657a1fedda3afd5a7959211..4d150524ea8fbcdef0f904860214c94b520721d8 100644 GIT binary patch delta 19 acmaFM{FZq_2Zxc7f`NgRp~c1tv5Wvj1_mbp delta 19 acmaFM{FZq_2Zy1lf`NgRk;%phv5Wvj4F)Cv diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 7b9ce3d58a8..93c27c17809 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index ed2ac4acba9e553d02fb55cda62a26a6b146c6e4..2d0bfa7d8ba15aafff10187a081d8d766d8c47b2 100644 GIT binary patch delta 23 fcmZ4WpJmm5mJM!eIE;)G3=FIcEjIhDiJ1%lcKZn^ delta 23 fcmZ4WpJmm5mJM!eI1Eh{3=FJ{Og8(iiJ1%lcL50} diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 8a6a2f1dfbb..14f98a3789b 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Rafael Fontenelle , 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index e8013bcb19b2f284a2bbe4e1d505fc4c6f200566..242219fd305299e67661bf7f494495fc56350449 100644 GIT binary patch delta 21 ccmdmBx4~}1b0H2RBLxEkD?^LT?}Z$B09LOD761SM delta 21 ccmdmBx4~}1b0H2xQw0M9D, 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 74f93b803566a3314ea7299a38cab2f66ccfc6d0..42242a5197b2cdec935a9732ac6c5bcbf730cf18 100644 GIT binary patch delta 21 dcmez7^37$#2@wt>BLxEkD?^LT7etov0svtK2igDt delta 21 dcmez7^37$#2@wuMQw0M9D, 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index c6798a84837a527ee71d8aef60dce24dd1fda848..85057af4b044d9133c4a146801414b91b23dcf2b 100644 GIT binary patch delta 23 ecmZ48z__}Bal=754kIH40|P5Vi_ItHk`w`9ln0am delta 23 ecmZ48z__}Bal=754ntD~0|P4~lg%gPk`w`9ng^2r diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 6d6e92abd2b..962e5d35de7 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Il'ya , 2022\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo index 3cf9916ba087df79144d3b97dd6a70e0b62972ad..5744f3dffda34f2122ea9d3079fed51164856bd7 100644 GIT binary patch delta 19 acmZo>ZDyU&!C_>iU|?WnXt8m^XGQ=vjs@)i delta 19 acmZo>ZDyU&!C_#bU|?WnXufg6XGQ=vvjy+~ diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po index ca47fe888f8..f6b0b704acb 100644 --- a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (Russia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru_RU/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 42f70f9baf6a64c2515e6407f2de5b35b6cfbffe..4712c684e3db603bb280e122da2786f1ff735eed 100644 GIT binary patch delta 21 ccmbOvGf8H{el`vxBLxEkD?^LT$JxBu0Z9r5GXMYp delta 21 ccmbOvGf8H{el`vR3k3rMD?{_m$JxBu0ZB3jHUIzs diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 7d9186d8849..ff507106271 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 974a2f7cbffc40d2c3943caa72e3eef9202cf5f6..8940570cdf65522a500d7522ddc76d0296d3d00f 100644 GIT binary patch delta 23 fcmaDbgXO^tmJLl)IE;)G3=FIcEjD*exmFGUb7l!_ delta 23 fcmaDbgXO^tmJLl)I1DTl3=FIc%{O;VxmFGUbB+mb diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 04dc9294f49..4c59543ac34 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Slavko , 2013-2019,2021\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -525,8 +525,8 @@ msgstr "vhodný obrázok pre zostavovač %s nenájdený: %s" msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "zápis výstupu…" @@ -613,16 +613,16 @@ msgstr "%s pridané, %s zmenené, %s odstránené" msgid "reading sources... " msgstr "čítanie zdrojov…" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "čakanie na procesy…" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "mená dokumentov na zapísanie: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "príprava dokumentov" @@ -2961,7 +2961,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "Zlyhalo spracovanie predvolenej hodnoty argumentu %r: %s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 910f52916e8762cffadb64bfe7de83547834230c..a0d98544d29e54424d60101462a50b89d1d22b47 100644 GIT binary patch delta 21 ccmZ3fwNh&X4=;z2k%EDNm7&FE5nfRa06@(I@Bjb+ delta 21 ccmZ3fwNh&X4=;zIse*xlm66G25nfRa06^0O?*IS* diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 47231199f92..48c68e6f0b4 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 3ab79d5f865..8b033995d60 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 70714fa6cfd2af1e0c7d363b3d7ff6a99e666861..23420282dea7355790ae6004299e5c54a7b69d34 100644 GIT binary patch delta 23 fcmbR8gk{PTmJJ&haTpmX7#LU?T5R6AD7qg2c9;o+ delta 23 fcmbR8gk{PTmJJ&haTuB^7#LU?nQY# diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index c3c8ecda1f1..eae829fc748 100644 --- a/sphinx/locale/sq/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sq/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Besnik Bleta , 2021-2022\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 4cb295a00f4c285d2299db02fe50ac114e722d25..0db003b70fe2d771ccdde9237f9937bbcf6dcde5 100644 GIT binary patch delta 21 dcmccQdC7CbSs@N1BLxEkD?^LTSB3rx0svhW2mJs5 delta 21 dcmccQdC7CbSs@NXQw0M9D, 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 1a1b4278737ad421dc387cfa0e35d19e95021786..c43873a824d8fd77c010f2e049e2a9775e445a2b 100644 GIT binary patch delta 19 acmX@Xa)M<-2Zxc7f`NgRp~c1tI~V~!ss=g$ delta 19 acmX@Xa)M<-2Zy1lf`NgRk;%phI~V~!u?9H+ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 15186458b42..7b2a85bd216 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index 8df4403b3867c34d1ea224a4aefb930d6f04e32a..6529f20192e4bbbf88342c3a169caa23883b0d06 100644 GIT binary patch delta 19 acmX@ia+qa82Zxc7f`NgRp~c1tn;8K<>;@|U delta 19 acmX@ia+qa82Zy1lf`NgRk;%phn;8K<^9Cva diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 7cd8a7e82c7..7a96a8b0b0b 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 4521e62847edbce71d21e4029b17da57ed68b1d7..6cc194590864a949b2b955328c5bd8f19fb0c765 100644 GIT binary patch delta 21 ccmaE4^2lVvIROqMBLxEkD?^LT*93Yv0b70tcmMzZ delta 21 ccmaE4^2lVvIROqsQw0M9D\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 5219b64a8b6fbeb69323282a4d7dd0131ec3854c..17ed6a36cb4946258249f53101b86184a3951751 100644 GIT binary patch delta 19 acmZo?ZD*aZjl;-D!N9=E&|>4hlZ*g4*ajy6 delta 19 acmZo?ZD*aZjl;k~!N9=E(0t>*lZ*g4{RS!k diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index f17ca516515..b5fdf047f14 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -523,8 +523,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -611,16 +611,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2959,7 +2959,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index e21ff600c2e44e302f24f476096e4adc0433b13f..e6ee0298eb7d0c6cfc19d2fdf9ced93f0188f345 100644 GIT binary patch delta 19 acmaFK{E~S>2Zxc7f`NgRp~c1tk&FOCZU!3w delta 19 acmaFK{E~S>2Zy1lf`NgRk;%phk&FOCbp{#$ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 5af3d64a912..811609dca52 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index e0b82d66ce5d6aa42051f756ff816d0a619d27bf..b3cf31333453aad0e2ebf8f0af3c41d40f9f1448 100644 GIT binary patch delta 23 fcmZ2?f_dEu<_%M7IE;)G3=FIcEjG`onUoFyaj6Lg delta 23 fcmZ2?f_dEu<_%M7I1Eh{3=FJ{Og7J{nUoFyajyvl diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index ffb2a3bfc67..4ab3427bb04 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 3d75f96c56cbb4b4db7086541f370c29bcc85f0e..6d8b4964f4dbc200c0e4332601e2fc518f0cb026 100644 GIT binary patch delta 21 ccmZ2#veab5VIB@6BLxEkD?^LTr+K1y0Z?)VvH$=8 delta 21 ccmZ2#veab5VIB@cQw0M9Db%7 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 19da822c1e9..744b0fe18c6 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk , 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index e9dc6a4d65a6405d7241200b25aec5b96365b7ff..c53bbc9fa539834ad8b216a374d6a9815e2369ee 100644 GIT binary patch delta 19 acmaFP{G5402Zxc7f`NgRp~c1t;fw%7A_f%z delta 19 acmaFP{G5402Zw=$f`NgRq4~xM;fw%7M+O)G diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index c9a95bea1dd..3d9e61d5f47 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 74eaf698e4e57ddec064da2047a3805538edee1a..b056c54d6ee93a28485422f257970e5ea296b5e2 100644 GIT binary patch delta 21 dcmcbtcUf=4LS7CdBLxEkD?^LTD|uIO0svIR2MhoJ delta 21 dcmcbtcUf=4LS7C-Qw0M9D, 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 3c75dab2c59afe34ae37c216e0ed91873e24017a..10415a9e4817cde2468540688cb0a11e9cda72ef 100644 GIT binary patch delta 19 acmaFP{G5402Zxc7f`NgRp~c1t;fw%7A_f%z delta 19 acmaFP{G5402Zy1lf`NgRk;%ph;fw%7DFze( diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 76e873e0e5d..5c5aa5a2bcf 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 9e69ec0e3b41cfa93efeafb3a6f3b77659588e3c..8a04bbb87c4c5d145bf23c29a89142747061bba8 100644 GIT binary patch delta 23 fcmbRKhk5!R<_-I%aTpmX7#LU?T5LWxEifGbdb$aR delta 23 fcmbRKhk5!R<_-I%aTuB^7#LU?nQT5bEifGbdcX;W diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index a22ccb54514..366666ded64 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-15 00:24+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: JY3, 2022\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index f3b45137fd23964ab341caf9ddb73567b38034c6..73dea5702b95fd7b68e6f0869bc446df5e7f924d 100644 GIT binary patch delta 19 acmey${FQk^2Zxc7f`NgRp~c1tsf++cHU>Wc delta 19 acmey${FQk^2Zw=$f`NgRq4~xMsf++cTLwY^ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 57522976434..48df962cf41 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index 0474b848370dabee30475614a764a44ee70eb257..5ca4f4d872440efbeb857a5b8e05a3940f926446 100644 GIT binary patch delta 19 acmZo+XiU|?WnXt8lZ2_pbCk_B!6 delta 19 acmZo+X\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -522,8 +522,8 @@ msgstr "" msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "" @@ -610,16 +610,16 @@ msgstr "" msgid "reading sources... " msgstr "" -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "" -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "" @@ -2958,7 +2958,7 @@ msgstr "" msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 94a38e880f387f3173bd83faed8461faed12625b..d3b26c90c9965c21edfb0397d740c5624a9c0723 100644 GIT binary patch delta 23 fcmZ2`h-vL1rVSAZ97aY81_oA!7Ml|i&N=`9Y6u8g delta 23 fcmZ2`h-vL1rVSAZ90nE&1_oA!=9?1|&N=`9YA^_0 diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 2633047fc73..5e116a2246a 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-08 00:17+0000\n" +"POT-Creation-Date: 2022-05-22 00:18+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Steven Hsu , 2021\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -530,8 +530,8 @@ msgstr "未找到對於 %s builder 適用的圖片:%s" msgid "building [mo]: " msgstr "建立 [mo]:" -#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:542 -#: sphinx/builders/__init__.py:568 +#: sphinx/builders/__init__.py:210 sphinx/builders/__init__.py:541 +#: sphinx/builders/__init__.py:567 msgid "writing output... " msgstr "編寫輸出..." @@ -618,16 +618,16 @@ msgstr "%s 已新增, %s 已變更, %s 已移除" msgid "reading sources... " msgstr "正在讀取來源..." -#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:578 +#: sphinx/builders/__init__.py:456 sphinx/builders/__init__.py:577 msgid "waiting for workers..." msgstr "正在等待工作者..." -#: sphinx/builders/__init__.py:520 +#: sphinx/builders/__init__.py:519 #, python-format msgid "docnames to write: %s" msgstr "待寫入的 docname: %s" -#: sphinx/builders/__init__.py:529 sphinx/builders/singlehtml.py:145 +#: sphinx/builders/__init__.py:528 sphinx/builders/singlehtml.py:145 msgid "preparing documents" msgstr "正在準備文件" @@ -2966,7 +2966,7 @@ msgstr "無法取得一個 method 簽名給 %s: %s" msgid "Invalid __slots__ found on %s. Ignored." msgstr "在 %s 找到無效的 __slots__。已略過。" -#: sphinx/ext/autodoc/preserve_defaults.py:105 +#: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" msgstr "無法為 %r 剖析一個預設引數: %s" From ac1e5e623c980711d3f4cb2c4098a34f22e6b74e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 13:28:25 +0900 Subject: [PATCH 24/33] Update CHANGES for PR #10456 --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index cc44550505d..d42b874409a 100644 --- a/CHANGES +++ b/CHANGES @@ -16,8 +16,6 @@ Features added Bugs fixed ---------- -* #10456: filter_meta_fields fails to remove more than one meta-field - Testing -------- @@ -41,6 +39,8 @@ Bugs fixed * #9575: autodoc: The annotation of return value should not be shown when ``autodoc_typehints="description"`` +* #10456: py domain: ``:meta:`` fields are displayed if docstring contains two + or more meta-field Testing -------- From e6f07c7381bad26175916afb0928d2098ebcf03d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 13:34:21 +0900 Subject: [PATCH 25/33] doc: Fix syntax error Co-authored-by: Adam Turner <9087854+AA-Turner@users.noreply.github.com> --- doc/development/theming.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development/theming.rst b/doc/development/theming.rst index 6869aeffeb5..fcbeb030a61 100644 --- a/doc/development/theming.rst +++ b/doc/development/theming.rst @@ -251,8 +251,8 @@ Add your own static files to the build assets By default, Sphinx copies static files on the ``static/`` directory of the template directory. However, if your package needs to place static files outside of the ``static/`` directory for some reasons, you need to copy them to the ``_static/`` -directory of HTML outputs manually at the build via an event hook. Here is a sample -code to accomplish this: +directory of HTML outputs manually at the build via an event hook. Here is an +example of code to accomplish this: .. code-block:: python From 23fd45569102d7af9929b4d74bedd81026185532 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 14:56:36 +0900 Subject: [PATCH 26/33] Remove changes for 5.1.x from 5.0.x branch --- CHANGES | 21 --------------------- sphinx/__init__.py | 6 +++--- 2 files changed, 3 insertions(+), 24 deletions(-) diff --git a/CHANGES b/CHANGES index 0f65675eb27..707e8c97335 100644 --- a/CHANGES +++ b/CHANGES @@ -1,24 +1,3 @@ -Release 5.1.0 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 5.0.0 beta2 (in development) ==================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 3fd1fe0f044..c3ec8a2e306 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,8 +21,8 @@ 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 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 1, 0, 'beta', 0) +version_info = (5, 0, 0, 'beta', 1) package_dir = path.abspath(path.dirname(__file__)) From ca25b4fba372c8c1cb86ec90642c88334c3dc84d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 15:03:05 +0900 Subject: [PATCH 27/33] Update CHANGES for PR #10443 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 707e8c97335..4cb10f8a57e 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed ``autodoc_typehints="description"`` * #9648: autodoc: ``*args`` and ``**kwargs`` entries are duplicated when ``autodoc_typehints="description"`` +* #10443: epub: EPUB builder can't detect the mimetype of .webp file * #10456: py domain: ``:meta:`` fields are displayed if docstring contains two or more meta-field From 41426431cf54bc9d0bcd52251abec2a9d36bdbc5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 15:19:13 +0900 Subject: [PATCH 28/33] doc: Fix copy-paste error Co-authored-by: peterbell10 --- sphinx/builders/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 4936ecf368c..316fe19132b 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -570,9 +570,9 @@ def write_process(docs: List[Tuple[str, nodes.document]]) -> None: tasks = ParallelTasks(nproc) chunks = make_chunks(docnames, nproc) - # create a statas_iterator to step progressbar after reading a document + # create a statas_iterator to step progressbar after writing a document # (see: ``on_chunk_done()`` function) - progress = status_iterator(chunks, __('reading sources... '), "purple", + progress = status_iterator(chunks, __('writing output... '), "darkgreen", len(chunks), self.app.verbosity) def on_chunk_done(args: List[Tuple[str, NoneType]], result: NoneType) -> None: From 7e031ab6cf152e48ec00e53b4fe8f322cbf6006e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 15:21:35 +0900 Subject: [PATCH 29/33] Fix typo --- sphinx/builders/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 316fe19132b..d8500e11b42 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -432,7 +432,7 @@ def _read_serial(self, docnames: List[str]) -> None: def _read_parallel(self, docnames: List[str], nproc: int) -> None: chunks = make_chunks(docnames, nproc) - # create a statas_iterator to step progressbar after reading a document + # create a status_iterator to step progressbar after reading a document # (see: ``merge()`` function) progress = status_iterator(chunks, __('reading sources... '), "purple", len(chunks), self.app.verbosity) @@ -570,7 +570,7 @@ def write_process(docs: List[Tuple[str, nodes.document]]) -> None: tasks = ParallelTasks(nproc) chunks = make_chunks(docnames, nproc) - # create a statas_iterator to step progressbar after writing a document + # create a status_iterator to step progressbar after writing a document # (see: ``on_chunk_done()`` function) progress = status_iterator(chunks, __('writing output... '), "darkgreen", len(chunks), self.app.verbosity) From f3ad6b48c35590a62296a3a1ecb3e7b6a913a8a6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 22 May 2022 21:52:31 +0900 Subject: [PATCH 30/33] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index ed47709e539..ff6b56c89be 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 5.1.0 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 5.0.0 beta2 (in development) ==================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index c3ec8a2e306..3fd1fe0f044 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '5.0.0b1' -__released__ = '5.0.0b1' # used when Sphinx builds its own docs +__version__ = '5.1.0+' +__released__ = '5.1.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -32,7 +32,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 0, 0, 'beta', 1) +version_info = (5, 1, 0, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From 336885c4e2282ab93f1dfead7b35a4980ecaff34 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Wed, 11 May 2022 13:19:24 +0200 Subject: [PATCH 31/33] Add test cases for #8180 The test checks, if ":meta private:" and ":meta public:" have an effect in attributes of a class. Currently the new test cases fail. The fix is in the next commit. --- .../roots/test-ext-autodoc/target/private.py | 12 +++++ tests/test_ext_autodoc_private_members.py | 54 +++++++++++++++++++ 2 files changed, 66 insertions(+) diff --git a/tests/roots/test-ext-autodoc/target/private.py b/tests/roots/test-ext-autodoc/target/private.py index 02d174863f9..e46344818a7 100644 --- a/tests/roots/test-ext-autodoc/target/private.py +++ b/tests/roots/test-ext-autodoc/target/private.py @@ -13,3 +13,15 @@ def _public_function(name): PRIVATE_CONSTANT = None #: :meta private: _PUBLIC_CONSTANT = None #: :meta public: + + +class Foo: + #: A public class attribute whose name starts with an underscore. + #: + #: :meta public: + _public_attribute = 47 + + #: A private class attribute whose name does not start with an underscore. + #: + #: :meta private: + private_attribute = 11 diff --git a/tests/test_ext_autodoc_private_members.py b/tests/test_ext_autodoc_private_members.py index bdb9478215c..bf707bf51aa 100644 --- a/tests/test_ext_autodoc_private_members.py +++ b/tests/test_ext_autodoc_private_members.py @@ -102,3 +102,57 @@ def test_private_members(app): ' :meta public:', '', ] + + +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_private_attributes(app): + app.config.autoclass_content = 'class' + options = {"members": None} + actual = do_autodoc(app, 'class', 'target.private.Foo', options) + assert list(actual) == [ + '', + '.. py:class:: Foo()', + ' :module: target.private', + '', + '', + ' .. py:attribute:: Foo._public_attribute', + ' :module: target.private', + ' :value: 47', + '', + ' A public class attribute whose name starts with an underscore.', + '', + ' :meta public:', + '', + ] + + +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_private_attributes_and_private_members(app): + app.config.autoclass_content = 'class' + options = {"members": None, + "private-members": None} + actual = do_autodoc(app, 'class', 'target.private.Foo', options) + assert list(actual) == [ + '', + '.. py:class:: Foo()', + ' :module: target.private', + '', + '', + ' .. py:attribute:: Foo._public_attribute', + ' :module: target.private', + ' :value: 47', + '', + ' A public class attribute whose name starts with an underscore.', + '', + ' :meta public:', + '', + '', + ' .. py:attribute:: Foo.private_attribute', + ' :module: target.private', + ' :value: 11', + '', + ' A private class attribute whose name does not start with an underscore.', + '', + ' :meta private:', + '', + ] From efa6197ffcdd1d4763079d42fb4338f101587685 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Wed, 11 May 2022 13:30:02 +0200 Subject: [PATCH 32/33] Set the docstring attribute of class members. Fixes #8180. Change ext.autodoc.importer.get_class_members to set ObjectMember.docstring the docstring found by the source code analyzer. --- sphinx/ext/autodoc/importer.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index 5ab40d135c5..85c1e81be64 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -280,12 +280,19 @@ def get_class_members(subject: Any, objpath: List[str], attrgetter: Callable members[name] = ObjectMember(name, INSTANCEATTR, class_=cls, docstring=docstring) - # append instance attributes (cf. self.attr1) if analyzer knows + # append or complete instance attributes (cf. self.attr1) if analyzer knows if analyzer: for (ns, name), docstring in analyzer.attr_docs.items(): if ns == qualname and name not in members: + # otherwise unknown instance attribute members[name] = ObjectMember(name, INSTANCEATTR, class_=cls, docstring='\n'.join(docstring)) + elif (ns == qualname and docstring and + isinstance(members[name], ObjectMember) and + not members[name].docstring): + # attribute is already known, because dir(subject) enumerates it. + # But it has no docstring yet + members[name].docstring = '\n'.join(docstring) except AttributeError: pass From 092c29e02528d22d15c18df10884257c31bd9b78 Mon Sep 17 00:00:00 2001 From: Anselm Kruis Date: Fri, 13 May 2022 12:18:02 +0200 Subject: [PATCH 33/33] Update CHANGES for #8180 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index ed47709e539..b56b22d643c 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed ``autodoc_typehints="description"`` * #9648: autodoc: ``*args`` and ``**kwargs`` entries are duplicated when ``autodoc_typehints="description"`` +* #8180: autodoc: Docstring metadata ignored for attributes * #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