From f9a33d2b3af40af4996b9c3064c117551cdcf4a2 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 11 Oct 2021 01:52:04 +0900 Subject: [PATCH 01/19] Support docutils-0.18: Set auto_id_prefix explicitly Since docutils-0.18, auto_id_prefix setting will be changed to `'%'` from `'id'`. To keep backward compatibility of node IDs, this sets `'id'` to settings explicitly. --- sphinx/environment/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 527e81dff..dc494add1 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -45,6 +45,7 @@ if TYPE_CHECKING: logger = logging.getLogger(__name__) default_settings: Dict[str, Any] = { + 'auto_id_prefix': 'id', 'embed_images': False, 'embed_stylesheet': False, 'cloak_email_addresses': True, From 6363ed4ddde632651de5da2b4a498d46d8970da7 Mon Sep 17 00:00:00 2001 From: Matthijs van der Burgh Date: Wed, 29 Sep 2021 15:46:18 +0200 Subject: [PATCH 02/19] Set refdoc default to pending_xref nodes to be used by missing-reference --- sphinx/transforms/post_transforms/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index e1da5438b..c199aa3d7 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -78,7 +78,8 @@ class ReferencesResolver(SphinxPostTransform): typ = node['reftype'] target = node['reftarget'] - refdoc = node.get('refdoc', self.env.docname) + node.setdefault('refdoc', self.env.docname) + refdoc = node.get('refdoc') domain = None try: From b3bce77b48deab208016a3a0985bc9eb151c35bd Mon Sep 17 00:00:00 2001 From: Andrey Mazo Date: Fri, 15 Oct 2021 02:29:02 +0300 Subject: [PATCH 03/19] LaTeX: fix '\raggedright' escaping causing "aggedright" text Sphinx version 4.0 introduced a bug in handling hlists in its LaTeX backend. Due to improper backslash escaping, LaTeX "\raggedright" command gets written as Carriage Return character (0x0D) followed by "aggedright". This results in stray "aggedright" text appearing in the resulting PDF and lack of effect \raggedright was supposed to achieve. Fix this by converting the remaining string to a raw string. This appears to be the only occurrence of such a missing escaping based on a quick grep. Fixes #9734. Fixes: 20884bb0c9f7: "refactor: LaTeX: Use raw strings for LaTeX macros" --- sphinx/writers/latex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 25c82940c..869759ee5 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1210,7 +1210,7 @@ class LaTeXTranslator(SphinxTranslator): ncolumns = node['ncolumns'] if self.compact_list > 1: self.body.append(r'\setlength{\multicolsep}{0pt}' + CR) - self.body.append(r'\begin{multicols}{' + ncolumns + '}\raggedright' + CR) + self.body.append(r'\begin{multicols}{' + ncolumns + r'}\raggedright' + CR) self.body.append(r'\begin{itemize}\setlength{\itemsep}{0pt}' r'\setlength{\parskip}{0pt}' + CR) if self.table: From ced8895b127c6ea84c74dc4df495d0f5e2560d74 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Oct 2021 02:14:57 +0900 Subject: [PATCH 04/19] Fix #9756: autodoc: Crashed if classmethod does not have __func__ attribute --- CHANGES | 1 + sphinx/util/inspect.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 933abe2f7..68048b276 100644 --- a/CHANGES +++ b/CHANGES @@ -60,6 +60,7 @@ Bugs fixed * #9657: autodoc: The base class for a subclass of mocked object is incorrect * #9607: autodoc: Incorrect base class detection for the subclasses of the generic class +* #9756: autodoc: Crashed if classmethod does not have __func__ attribute * #9630: autosummary: Failed to build summary table if :confval:`primary_domain` is not 'py' * #9670: html: Fix download file with special characters diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 4482f2087..6a89d20e0 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -865,7 +865,7 @@ def getdoc(obj: Any, attrgetter: Callable = safe_getattr, if cls and name and isclassmethod(obj, cls, name): for basecls in getmro(cls): meth = basecls.__dict__.get(name) - if meth: + if meth and hasattr(meth, '__func__'): return getdoc(meth.__func__) doc = attrgetter(obj, '__doc__', None) From ff533f59bbba97f50e71b23c2d3f8e45a8c4fc7c Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Thu, 21 Oct 2021 10:41:41 +0100 Subject: [PATCH 05/19] Make util.typing.restify sanitise unreproducible output (eg. memory addresses) Whilst working on the Reproducible Builds effort [0] I noticed that sphinx generates output that is not reproducible, causing a number of packages in Debian to unreproducible. Specifically, when Sphinx locates an alias of an instance when generating 'autodoc' documentation, it uses the raw Python repr(...) of the object and does not sanitise it for memory addresses (etc.) like elsewhere in Sphinx. This can result in documentation like this: -

alias of <webob.client.SendRequest object at 0x7fd769189df0>

+

alias of <webob.client.SendRequest object at 0x7f0f02233df0>

Patch attached that uses the object_description method, which was added to fix precisely this kind of issue. I originally filed this in Debian as bug #996948 [1]. [0] https://reproducible-builds.org/ [1] https://bugs.debian.org/996948 --- sphinx/util/typing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/util/typing.py b/sphinx/util/typing.py index 87707d48f..a2ab5f931 100644 --- a/sphinx/util/typing.py +++ b/sphinx/util/typing.py @@ -144,7 +144,7 @@ def restify(cls: Optional[Type]) -> str: else: return _restify_py36(cls) except (AttributeError, TypeError): - return repr(cls) + return inspect.object_description(cls) def _restify_py37(cls: Optional[Type]) -> str: From 3045e81d6e9b2aa302bb0f8f649b30917758cccf Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Oct 2021 02:19:03 +0900 Subject: [PATCH 06/19] Update CHANGES for PR #9755 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 933abe2f7..216bb9f8e 100644 --- a/CHANGES +++ b/CHANGES @@ -60,6 +60,7 @@ Bugs fixed * #9657: autodoc: The base class for a subclass of mocked object is incorrect * #9607: autodoc: Incorrect base class detection for the subclasses of the generic class +* #9755: autodoc: memory addresses are shown for aliases * #9630: autosummary: Failed to build summary table if :confval:`primary_domain` is not 'py' * #9670: html: Fix download file with special characters From 8118f979dc09f1ed027810dbb5abb8a982d7cf23 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 11 Oct 2021 01:23:29 +0900 Subject: [PATCH 07/19] Support docutils-0.18: allow PreBibliographic nodes before docinfo Since 0.18, `meta` directive inserts meta node into the top of the document. It confuses MetadataCollector. This allows doctree contains PreBibliographic nodes just before docinfo node. --- sphinx/environment/collectors/metadata.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/sphinx/environment/collectors/metadata.py b/sphinx/environment/collectors/metadata.py index c684e4a4f..c3a0aa2f4 100644 --- a/sphinx/environment/collectors/metadata.py +++ b/sphinx/environment/collectors/metadata.py @@ -33,9 +33,12 @@ class MetadataCollector(EnvironmentCollector): Keep processing minimal -- just return what docutils says. """ - if len(doctree) > 0 and isinstance(doctree[0], nodes.docinfo): + index = doctree.first_child_not_matching_class(nodes.PreBibliographic) + if index is None: + return + elif isinstance(doctree[index], nodes.docinfo): md = app.env.metadata[app.env.docname] - for node in doctree[0]: + for node in doctree[index]: # type: ignore # nodes are multiply inherited... if isinstance(node, nodes.authors): authors = cast(List[nodes.author], node) @@ -58,7 +61,7 @@ class MetadataCollector(EnvironmentCollector): value = 0 md[name] = value - doctree.pop(0) + doctree.pop(index) def setup(app: Sphinx) -> Dict[str, Any]: From ac6935bc443016384935137a7b769f558cdfc7bd Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Fri, 22 Oct 2021 17:32:15 -0400 Subject: [PATCH 08/19] Fix selection of parameter names in HTML theme Parameters are written in HTML as (leaving out some internal classes): ``` nameTypeName ``` but in rendered form there's a colon between the name and type. This colon is inserted virtually using CSS, but since it doesn't exist, the browser thinks both sides are part of the same word. Styling the virtual text as inline block makes it be treated as a break, but also makes it apply vertical margins, so we need to set those to zero again. See https://github.com/matplotlib/matplotlib/issues/21432 --- sphinx/themes/basic/static/basic.css_t | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 45815bac0..43e04bd34 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -731,8 +731,9 @@ dl.glossary dt { .classifier:before { font-style: normal; - margin: 0.5em; + margin: 0 0.5em; content: ":"; + display: inline-block; } abbr, acronym { From e6f9603494eee973664fe0ac49d9ef473011ee3f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Oct 2021 13:03:12 +0900 Subject: [PATCH 09/19] Update CHANGES for PR #9763 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 216bb9f8e..32e3b9e6e 100644 --- a/CHANGES +++ b/CHANGES @@ -65,6 +65,7 @@ Bugs fixed is not 'py' * #9670: html: Fix download file with special characters * #9710: html: Wrong styles for even/odd rows in nested tables +* #9763: html: parameter name and its type annotation are not separated in HTML * #9649: HTML search: when objects have the same name but in different domains, return all of them as result instead of just one. * #9678: linkcheck: file extension was shown twice in warnings From b778ee806eabbe39c4366de1348f51f47a4dddd6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Oct 2021 14:59:36 +0900 Subject: [PATCH 10/19] Fix #9752: autodoc: Failed to detect type annotation for slots attribute --- CHANGES | 2 ++ doc/extdev/deprecated.rst | 5 +++++ sphinx/ext/autodoc/__init__.py | 14 +++++++++++--- tests/roots/test-ext-autodoc/target/slots.py | 1 + tests/test_ext_autodoc.py | 1 + tests/test_ext_autodoc_autoattribute.py | 1 + tests/test_ext_autodoc_autoclass.py | 1 + 7 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 32e3b9e6e..fc305e805 100644 --- a/CHANGES +++ b/CHANGES @@ -28,6 +28,7 @@ Incompatible changes Deprecated ---------- +* ``sphinx.ext.autodoc.AttributeDocumenter._datadescriptor`` * ``sphinx.writers.html.HTMLTranslator._fieldlist_row_index`` * ``sphinx.writers.html.HTMLTranslator._table_row_index`` * ``sphinx.writers.html5.HTML5Translator._fieldlist_row_index`` @@ -61,6 +62,7 @@ Bugs fixed * #9607: autodoc: Incorrect base class detection for the subclasses of the generic class * #9755: autodoc: memory addresses are shown for aliases +* #9752: autodoc: Failed to detect type annotation for slots attribute * #9630: autosummary: Failed to build summary table if :confval:`primary_domain` is not 'py' * #9670: html: Fix download file with special characters diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index 611a79076..8c3576b2c 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -22,6 +22,11 @@ The following is a list of deprecated interfaces. - (will be) Removed - Alternatives + * - ``sphinx.ext.autodoc.AttributeDocumenter._datadescriptor`` + - 4.3 + - 6.0 + - N/A + * - ``sphinx.writers.html.HTMLTranslator._fieldlist_row_index`` - 4.3 - 6.0 diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index db68dd6b9..2cdf224cb 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -2329,12 +2329,11 @@ class SlotsMixin(DataDocumenterMixinBase): return ret - def should_suppress_directive_header(self) -> bool: + def should_suppress_value_header(self) -> bool: if self.object is SLOTSATTR: - self._datadescriptor = True return True else: - return super().should_suppress_directive_header() + return super().should_suppress_value_header() def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: if self.object is SLOTSATTR: @@ -2352,6 +2351,15 @@ class SlotsMixin(DataDocumenterMixinBase): else: return super().get_doc(ignore) # type: ignore + @property + def _datadescriptor(self) -> bool: + warnings.warn('AttributeDocumenter._datadescriptor() is deprecated.', + RemovedInSphinx60Warning) + if self.object is SLOTSATTR: + return True + else: + return False + class RuntimeInstanceAttributeMixin(DataDocumenterMixinBase): """ diff --git a/tests/roots/test-ext-autodoc/target/slots.py b/tests/roots/test-ext-autodoc/target/slots.py index 32822fd38..75c7a4a52 100644 --- a/tests/roots/test-ext-autodoc/target/slots.py +++ b/tests/roots/test-ext-autodoc/target/slots.py @@ -10,6 +10,7 @@ class Bar: __slots__ = {'attr1': 'docstring of attr1', 'attr2': 'docstring of attr2', 'attr3': None} + __annotations__ = {'attr1': int} def __init__(self): self.attr2 = None #: docstring of instance attr2 diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index 63a559f8e..8f14392b2 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -1359,6 +1359,7 @@ def test_slots(app): '', ' .. py:attribute:: Bar.attr1', ' :module: target.slots', + ' :type: int', '', ' docstring of attr1', '', diff --git a/tests/test_ext_autodoc_autoattribute.py b/tests/test_ext_autodoc_autoattribute.py index a9392163a..8fe065d65 100644 --- a/tests/test_ext_autodoc_autoattribute.py +++ b/tests/test_ext_autodoc_autoattribute.py @@ -129,6 +129,7 @@ def test_autoattribute_slots_variable_dict(app): '', '.. py:attribute:: Bar.attr1', ' :module: target.slots', + ' :type: int', '', ' docstring of attr1', '', diff --git a/tests/test_ext_autodoc_autoclass.py b/tests/test_ext_autodoc_autoclass.py index 50cdff6b3..9c730f425 100644 --- a/tests/test_ext_autodoc_autoclass.py +++ b/tests/test_ext_autodoc_autoclass.py @@ -243,6 +243,7 @@ def test_slots_attribute(app): '', ' .. py:attribute:: Bar.attr1', ' :module: target.slots', + ' :type: int', '', ' docstring of attr1', '', From b60c43e1d055d7b1bae4d36c149e50f8d0060638 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Oct 2021 16:41:20 +0900 Subject: [PATCH 11/19] Update CHANGES for PR #9685 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 32e3b9e6e..b5ee96bfb 100644 --- a/CHANGES +++ b/CHANGES @@ -68,6 +68,7 @@ Bugs fixed * #9763: html: parameter name and its type annotation are not separated in HTML * #9649: HTML search: when objects have the same name but in different domains, return all of them as result instead of just one. +* #7634: intersphinx: references on the file in sub directory are broken * #9678: linkcheck: file extension was shown twice in warnings * #9697: py domain: An index entry with parens was registered for ``py:method`` directive with ``:property:`` option From 3ad591a63128cb730b6e7e01d2547f60fdf4acc4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Oct 2021 17:07:39 +0900 Subject: [PATCH 12/19] Update CHANGES for PR #9737 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index b5ee96bfb..b87ccd50e 100644 --- a/CHANGES +++ b/CHANGES @@ -69,6 +69,7 @@ Bugs fixed * #9649: HTML search: when objects have the same name but in different domains, return all of them as result instead of just one. * #7634: intersphinx: references on the file in sub directory are broken +* #9737: LaTeX: hlist is rendered as a list containing "aggedright" text * #9678: linkcheck: file extension was shown twice in warnings * #9697: py domain: An index entry with parens was registered for ``py:method`` directive with ``:property:`` option From 66ec92b2a2aa29a643901c7c905e19e261101c3e Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Sat, 23 Oct 2021 14:33:00 +0300 Subject: [PATCH 13/19] Fix a typo in variable name --- sphinx/domains/c.py | 4 ++-- sphinx/domains/cpp.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 58a0c7014..2ba6fcf8b 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -92,7 +92,7 @@ _id_prefix = [None, 'c.', 'Cv2.'] _string_re = re.compile(r"[LuU8]?('([^'\\]*(?:\\.[^'\\]*)*)'" r'|"([^"\\]*(?:\\.[^"\\]*)*)")', re.S) -_simple_type_sepcifiers_re = re.compile(r"""(?x) +_simple_type_specifiers_re = re.compile(r"""(?x) \b( void|_Bool|bool # Integer @@ -2584,7 +2584,7 @@ class DefinitionParser(BaseParser): # fundamental types, https://en.cppreference.com/w/c/language/type # and extensions self.skip_ws() - if self.match(_simple_type_sepcifiers_re): + if self.match(_simple_type_specifiers_re): return ASTTrailingTypeSpecFundamental(self.matched_text) # prefixed diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index d53997552..8956f4dc8 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -335,7 +335,7 @@ _keywords = [ ] -_simple_type_sepcifiers_re = re.compile(r"""(?x) +_simple_type_specifiers_re = re.compile(r"""(?x) \b( auto|void|bool # Integer @@ -5859,7 +5859,7 @@ class DefinitionParser(BaseParser): # fundamental types, https://en.cppreference.com/w/cpp/language/type # and extensions self.skip_ws() - if self.match(_simple_type_sepcifiers_re): + if self.match(_simple_type_specifiers_re): return ASTTrailingTypeSpecFundamental(self.matched_text) # decltype From 71c1fb01b96ccc35f367d9e61fa8269ad987eea7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 25 Oct 2021 09:31:42 +0900 Subject: [PATCH 14/19] Fix CI: Downgrade python for transifex CI The latest transifex-client could not be installed on python 3.10 environment. This downgrade python to 3.9 to be install the latest one. ref: https://github.com/transifex/transifex-client/pull/330 --- .github/workflows/transifex.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 3efae8ff2..1e671ca8d 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -15,6 +15,8 @@ jobs: ref: 4.x - name: Set up Python uses: actions/setup-python@v2 + with: + python-version: 3.9 # https://github.com/transifex/transifex-client/pull/330 - name: Install dependencies run: pip install -U babel jinja2 transifex-client - name: Extract translations from source code From c39cf2e75038aaa40a458444580bf7b91aa3d20a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 25 Oct 2021 11:00:01 +0900 Subject: [PATCH 15/19] Fix CI: Downgrade python for transifex CI --- .github/workflows/transifex.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 1e671ca8d..5a9f929a7 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -35,6 +35,8 @@ jobs: ref: 4.x - name: Set up Python uses: actions/setup-python@v2 + with: + python-version: 3.9 # https://github.com/transifex/transifex-client/pull/330 - name: Install dependencies run: pip install -U babel jinja2 transifex-client - name: Extract translations from source code From 70e0c314caf3c41a2cda763838c192daf1626710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Freitag?= Date: Mon, 25 Oct 2021 11:08:10 +0200 Subject: [PATCH 16/19] Fix linkcheck_auth link to Requests authentication MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The link was directing to https://www.sphinx-doc.org/en/master/usage/requests-auth>. Prefer using the intersphinx module to generate the link, it’s more robust than directly linking to the page. --- doc/usage/configuration.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/usage/configuration.rst b/doc/usage/configuration.rst index a1a113873..46c82e56d 100644 --- a/doc/usage/configuration.rst +++ b/doc/usage/configuration.rst @@ -2637,10 +2637,8 @@ Options for the linkcheck builder A regular expression that matches a URI. *auth_info* Authentication information to use for that URI. The value can be anything - that is understood by the ``requests`` library (see `requests - Authentication `_ for details). - - .. _requests-auth: https://requests.readthedocs.io/en/master/user/authentication/ + that is understood by the ``requests`` library (see :ref:`requests + Authentication ` for details). The ``linkcheck`` builder will use the first matching ``auth_info`` value it can find in the :confval:`linkcheck_auth` list, so values earlier in the From 498bcad4fb80e98304ecc941b95863a0e2f91275 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Mon, 25 Oct 2021 16:48:09 +0000 Subject: [PATCH 17/19] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 8091 -> 8091 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6428 -> 6428 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11429 -> 11429 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 522 -> 522 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 517 -> 517 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70589 -> 70589 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33998 -> 33998 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6783 -> 6783 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 101832 -> 101832 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74234 -> 74234 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 5028 -> 5028 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3307 -> 3307 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79496 -> 79496 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83028 -> 83028 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7164 -> 7164 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6873 -> 6873 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6849 -> 6849 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19644 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 80228 -> 80228 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 9026 -> 9026 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16710 -> 16710 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3599 -> 3599 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sphinx.pot | 30 +++++++++--------- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78906 -> 78906 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 588 -> 588 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 631 -> 631 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 498 -> 498 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58646 -> 58646 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 496 -> 496 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 63473 -> 63473 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 510 -> 510 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 30 +++++++++--------- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 525 -> 525 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 30 +++++++++--------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41779 -> 41779 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 30 +++++++++--------- 125 files changed, 945 insertions(+), 945 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 5044fca066b6f4e4555d1cae8b99d1c15b0c3ef8..0a326665c85a376518739f1a0cecd7ac35bde880 100644 GIT binary patch delta 21 ccmZp)YqZ;-B*0;0s$ghlWn#WrOW-;m06}mC&Hw-a delta 21 ccmZp)YqZ;-B*0;4pkQEWWooopOW-;m06`%I#sB~S diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index f8d3348fe..0d921dd5a 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index c35efaabadfa37bd2b0c3bbd15e6790c03f1a4c6..2d179b76d790a5002bc1b7bd473daa3bf4eadedd 100644 GIT binary patch delta 19 acmey${FQk^2ZxcVf}xp}iTTC}sf++cod!z) delta 18 acmey${FQk^$HWaRES6TLMjI!jG6DceK?c(R diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 87c67dd14..15f966ae4 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index e27eaf6f40860c44db3e7c07eda1ec6ee4717acb..a3f6af4f8e75dfa1c9eea6229bab1ed2ceee1a81 100644 GIT binary patch delta 21 dcmbPjKihu84qgr;Qw2jaD--k02Y7D_0sv7n2QdHu delta 21 dcmbPjKihu84&KQRcv)C1txSzJAK<+$2moBs2lxO0 diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 488334144..44abf066e 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 7f09206fff18790798fe09ab2fff811c0e5f12c3..9e223914678ac3d0bc951b824399580d70f0f2d6 100644 GIT binary patch delta 21 ccmbQMGgoKBVqOj-Qw2jaD--k0t9gq!08BCla{vGU delta 21 ccmbQMGgoKBVqOkI0|f(1D^sJ*t9gq!088TrYXATM diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index c4e02f2ba..407f06ee8 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index 81da751c7052413ecfccd9fb385883f1d392eaec..d2595200342f108756e48ec83e5eae5cf6664abe 100644 GIT binary patch delta 21 ccmaDU^ipU;DJzGOse+-Im5KT0TGltr08sq~-~a#s delta 21 ccmaDU^ipU;DJzGefr5dhm8sF@TGltr08p+5*Z=?k diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index d7af1ee85..36806ad2d 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index cec083ce27a3284dff16c9d67b9df38fa1697411..9a2acae3464f5979ef481e24d14c28b4ef5be111 100644 GIT binary patch delta 21 ccmbQ^G{\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 9986bd0f29e95cc96b27cf0360732708808d7191..1382c58e1eade7e8fc91c31de81b43a1904a2734 100644 GIT binary patch delta 21 ccmbPZG{\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 92d174fb84d1fd3e74792945c14f9c998540ce79..279b662be49a017048439a0883d2b8b9b1a58089 100644 GIT binary patch delta 20 bcmdm)u`^?Xp#q1Ise+-Im5KRcO9c@CO63Lb delta 20 bcmdm)u`^?Xp#q1Yxq^X#m7&36O9c@CN`VF6 diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 76b20a503..87b154a2c 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -2291,47 +2291,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "ny konfiguration" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "udvidelser ændret" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "kildemappe er ændret" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 4f49b906997275ed8ef99347acfcaae9ae8f7bd2..1edd1f6ce8f49c0c3dedf6e86ac974c8296145d3 100644 GIT binary patch delta 21 dcmZ1)xioUaQYj82Qw2jaD--k0Yo&e&0svM=2Z{gy delta 21 dcmZ1)xioUaQYj8Ya|HtfD?@|LYo&e&0svLh2YLVi diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 5db681426..972346177 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -2291,47 +2291,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index b1d65456e77391b90e1d3c63d76d726962b3cc0e..ecfe239e2246cd2acac04926bece552b4f6da74a 100644 GIT binary patch delta 23 ecmZo@V{K?--JsCKVPvXcXl7+%zFDK`#sL6WUkCXB delta 23 ecmZo@V{K?--JsCKVQ8*kU|?lvuvw$&#sL6V>j&uo diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 537fb06f7..7d413baab 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -2290,47 +2290,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "νέα παραμετροποίηση" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "η παραμετροποίηση άλλαξε" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "αλλαγμένες επεκτάσεις" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "ο πηγαίος κατάλογος έχει αλλάξει" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Ο τομέας %r δεν είναι καταχωρημένος" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree" @@ -3438,23 +3438,23 @@ msgid "" "translated: {1}" msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "περισσότεροι από ένας στόχοι βρέθηκαν για 'οποιαδήποτε' παραπομπή %r: θα μπορούσε να είναι %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 1f6bb740dd0bae256250af4a74df9ae91aa922fe..fc32de4146afa17374215e0fdf1fe47e7454b409 100644 GIT binary patch delta 19 acmcb?e1myH2ZxcVf}xp}iTTC}9*h7%PX+V< delta 19 acmcb?e1myH2Zy1#f`NgRp~1!p9*h7$>jmTh diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index ad8ff43a6..f982d308e 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index b01fd479c313f18abbddf11f8539660b498583b6..ce05902b562978b383dcfe1a60233aa9bca0bbdd 100644 GIT binary patch delta 19 acmeBT>0+7C!C_>oU}$D#V!m-g6(ayP-35#Q delta 19 acmeBT>0+7C!C`2wU|?WnXs~fY6(ayPc?Em` diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index d4a09c0ac..28338da82 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index f379e835c663dce49b0171623c79bf34879335ea..b086844a005bf28f58100bc978067d8246377623 100644 GIT binary patch delta 19 acmZo=X=Rzv!C_>oU}$D#V!m-gDI)+j9|e5? delta 19 acmZo=X=Rzv!C`2wU|?WnXs~fYDI)+iy9I3k diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index e922aae2d..053ac6001 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 422be8446082f6ab92fe6a606cd4f04aa8159027..ef786bb9964a1f882dd1a11ee7349447176f2e03 100644 GIT binary patch delta 21 ccmX@WcYtq$5etWrse+-Im5KRgD;73p07Byh7ytkO delta 21 ccmX@WcYtq$5etW*xq^X#m7&3AD;73p077pC2mk;8 diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 3788c001b..7b9666e3b 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 1db41e009defad6010cc60e3c1dcdf1257793a85..70b18f66e5cd9cb5567faadb76933267a58236ae 100644 GIT binary patch delta 23 fcmdnHoMrEFmJP9!IgCsd49%=e%r~b_j%WY?Y<38b delta 23 fcmdnHoMrEFmJP9!ISdUH3@oiojW(xFj%WY?Y$phZ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 9607e7222..34d0da42b 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -2294,47 +2294,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "nueva configuración" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "configuración modificada" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "extensiones modificadas" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "la versión del entorno de compilación no es actual" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "directorio fuente ha cambiado" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este entorno es incompatible con el generador seleccionado, elija otro directorio doctree." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "toctree auto referenciado encontrado. Ignorado." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "documento no está incluido en ningún toctree" @@ -3442,23 +3442,23 @@ msgid "" "translated: {1}" msgstr "referencias de término inconsistentes en el mensaje traducido. original: {0}, traducido: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "más de un objetivo destino encontrado para 'cualquier' referencia cruzada %r: podría ser %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 647e07b2c91cef65b20da5b8835b20501fdb9c88..6be71bb04129dcf7f7656632a64e62001f13070a 100644 GIT binary patch delta 23 ecmX@t$#kxhX+xS1hmom*p_!G5`Q|*I1PcIVvj?>R delta 23 ecmX@t$#kxhX+xS1hoOOjfu)tH(dIm#1PcIVWCyJP diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index e8b4e6502..415c298a8 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -2291,47 +2291,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "See keskkond pole valitud ehitajaga ühilduv, palun vali mõni teine dokumendipuu kataloog." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "dokument pole ühegi sisukorrapuu osa" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 5f10d03c682a606453deca444de66afd3b2da9f1..a88bcd00baccd6fe6870552da45ebdccebe1d701 100644 GIT binary patch delta 21 ccmexw^50}bumFdVse+-Im5KT0XaN;209FnLVE_OC delta 21 ccmexw^50}bumFdlfr5dhm8sF@XaN;209C&RSpWb4 diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 5cdb4d3ef..3f4a54d4f 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 3368675d1a8b364358cf6e6003b50deb7ab241e8..63f13a9ed59e270600c4fecc079cee6b37d0c64c 100644 GIT binary patch delta 22 ecmX>xo9)DGwhcd4a2S~?7@Ap`m~UEn;t2q7841Mz delta 22 ecmX>xo9)DGwhcd4OjcOQ!eVJ\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -2291,47 +2291,47 @@ msgstr "برچشب تعریف نشده: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "پیکربندی جدید" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "پیکربندی تغییر داده شد" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "افزونه‌ها تغییر کردند" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "نسخه‌ی محیط ساخت به‌روز نیست" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "شاخه ی منبع تغییر کرد" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "پویش اسناد %s: %r شکست خورد" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "دامنه ی %r ثبت نشده" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "ارجاعات اصطلاحی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "امکان تشخیص متن جایگزین برای ارجاع متقابل نبود. شاید یک اشکال برنامه نویسی باشد." -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "برای «هر» ارجاع متقابل بیشتر از یک هفد پیدا شد: %r شاید %s باشد" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s مرجع هدف پیدا نشد: %s" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "مقصد ارجاع %r پیدا نشد %s" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 54857f9e6a701c49088e4533e02f5badcc192b8f..df47928f2ab8c077cc02fdcaccca263e7fdedcc9 100644 GIT binary patch delta 21 ccmaDL_CRdI88!|hQw2jaD--k0SJ--309H%~CjbBd delta 21 ccmaDL_CRdI88!|>a|HtfD?@|LSJ--309Dur7XSbN diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 0fca2fcb8..714272909 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 3ed8744cfd65cefed54b2e1c5550253a92db4758..f8d9863da83683532331fbdb22646b7a47fe0d6b 100644 GIT binary patch delta 23 fcmex$nB~`DmJO4pa~PQ_7@Ap`m~WmnJ)sK#f42$6 delta 23 fcmex$nB~`DmJO4pa~K*Z7+6}F8f~66J)sK#e`pE4 diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index c4c8aec08..0036d80cf 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -33,7 +33,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -2313,47 +2313,47 @@ msgstr "lablel non défini: 1%s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Impossible de créer une référence croisée. Titre ou légende introuvable: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "nouvelle configuration" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "la configuration a changé" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "les extensions ont changé" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "version non à jour de l’environnement de construction" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "le répertoire racine a changé" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Cet environnement est incompatible avec le constructeur sélectionné, veuillez choisir un autre répertoire doctree." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Échec du scan des documents dans %s : %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "une table des matières auto-référencée a été trouvée. Elle sera ignorée." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "Le document n'est inclus dans aucune table des matières de l'arborescence." @@ -3461,23 +3461,23 @@ msgid "" "translated: {1}" msgstr "ncohérences de références de terme dans le message traduit. Original : {0}, traduit : {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "plus d'une cible trouvée pour la référence %r de type 'any' : pourrait être %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 9c7b046ea7d94d9cb2effc5dbb06a1c1346cc6af..107d50267400417b07df9186a43b70b32364f8f6 100644 GIT binary patch delta 19 acmZo*X<(Vq!C_>oU}$D#V!m-g0V4o4VFhjg delta 18 ZcmZo*X<(VqF>wP6i=~yR(Z&e{i~u?91@-^{ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 4dda32e3b..258b68e1b 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 9dad4479f56e69bf2d0bf3f18d47298221832af7..910661b7ce834c69067393da89d9f1c941ae745a 100644 GIT binary patch delta 21 dcmZ3YzC?Y)5iSlRQw2jaD--k0XSi-~002+62N?hW delta 21 dcmZ3YzC?Y)5iSlx0|f(1D^sJ*XSi-~002*C2N3`O diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 3d1ff7bea..42cf5a509 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 7e9018c155c348c1d589d12c395137da9937d8a0..958060fc01f5fcb6467a98c277d194923ff43407 100644 GIT binary patch delta 23 ecmaFZ&i1gKZ39Oqhmom*p_!G5`DTI6i@yM8#0by; delta 23 fcmaFZ&i1gKZ39Q=WP?r?7E3Erqs;=H7k>c&a6$=V diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 2b7049275..fc9a42d84 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -2291,47 +2291,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "नव विन्यास" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "विन्यास परिवर्तित" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "आयाम परिवर्तित" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "अनुवादित संदेश में असंगत शब्द के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "किसी भी पारस्परिक-सन्दर्भ के लिए एक से अधिक लक्ष्य मिले %r: %s संभव" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 58a1dc97043299006315dd13b4304eb040c50f24..fe46dd9656539aeb29197c8f317b996c6f3df53b 100644 GIT binary patch delta 19 acmey*{GWM32ZxcVf}xp}iTTC}`HTQZ83t(p delta 19 acmey*{GWM32Zy1#f`NgRp~1!p`HTQYwFX%L diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 17b2561d1..fa3c74073 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index bde19693ce91ad2604901a2aa268365ac6927604..52c2453c1e8f0b841741338793d1fdcb087d4bcf 100644 GIT binary patch delta 23 ecmaFX&iJgIaf7Y~hmom*p_!G5`DRm%jnV*O%LiEi delta 23 ecmaFX&iJgIaf7Y~hoQNGfq|8w!Dds9jnV*OR|iP| diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 141d8619e..eeec09de2 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "više od jednog targeta za 'any' referencu %r: može biti %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 6d634949814c2cb2a0637fd1a4097ff766654111..c6eed34f997eea21788264e48771a3dd8dcde76f 100644 GIT binary patch delta 21 ccmewt{V#gMekl$kQw2jaD--k0$ED1L0c8URwEzGB delta 21 ccmewt{V#gMekl$^0|f(1D^sJ*$ED1L0c5lXtpET3 diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 27c0d6c90..a7aad89c8 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -2293,47 +2293,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "forrás mappa megváltozott" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 1c22ece539fdcb0f1d26fb46ec060530a9442f87..9c736fd79d0b227548534b4af30bb3295134271f 100644 GIT binary patch delta 23 fcmeCV%iMF9dBdVM4kJ?qLo+KA^UbT;9;E{SaxV#Z delta 23 fcmeCV%iMF9dBdVM4nuPV0|P5VgUzej9;E{Sak~j< diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index b51307a30..3c5a34930 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -2292,47 +2292,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "konfigurasi baru" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "konfigurasi berubah" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "ekstensi berubah" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "membangun lingkungan bukan versi saat ini" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "direktori sumber telah berubah" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Lingkungan ini tidak kompatibel dengan pembangun yang dipilih, silakan pilih direktori doctree lain." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Gagal memindai dokumen dalam %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r tidak terdaftar" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "totree referensikan sendiri ditemukan. Diabaikan" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "dokumen tidak termasuk dalam toctree" @@ -3440,23 +3440,23 @@ msgid "" "translated: {1}" msgstr "referensi istilah yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "lebih dari satu target ditemukan untuk referensi silang 'any' %r: bisa %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index b7194a8ba869c68359548fb19e35e59bb3507c80..6eac0d550ae27a21ea807075c4d4209ffc9bed4c 100644 GIT binary patch delta 21 ccmaDY`C4*AIXj1use+-Im5KT0diESv08ym|d;kCd delta 21 ccmaDY`C4*AIXj1;xq^X#m7&4rdiESv08udpYybcN diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 1b12d5ffb..baa9f3465 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 38990544f00eb3dca2de6d2053521b135f67c57a..f4711179e36a7ba2cc3787698b622ce449cc8683 100644 GIT binary patch delta 21 ccmaFq|I&Yhy99@kse+-Im5KRge~DTA09P>v-T(jq delta 21 ccmaFq|I&Yhy99@!xq^X#m7&3Ae~DTA09L&Q&Hw-a diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index f833318ce..3d05795f6 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -2292,47 +2292,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3440,23 +3440,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index a7ee9a3097a89468edc410eb3408eedb209d8a97..c924bc578d135e4cd3df49523084358a8c93941e 100644 GIT binary patch delta 23 fcmeBp%hK_dWrN>z4kJ?qLo+KA^UYz?jphRYZL|oK delta 23 fcmeBp%hK_dWrN>z4nuPV0|P5VgUw;njphRYZ9oWw diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 3c5fcfe46..05c2d2fe1 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -2303,47 +2303,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "新しい設定" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "変更された設定" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "変更された拡張" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "ビルド環境のバージョンが最新ではありません" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "ソースディレクトリが変更されました" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "自己参照している toctree が見つかりました。無視します。" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "ドキュメントはどの toctree にも含まれていません" @@ -3451,23 +3451,23 @@ msgid "" "translated: {1}" msgstr "翻訳されたメッセージの用語参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "'any' クロスリファレンス %r のターゲットが1つ以上みつかりました。 %s に参照を設定します。" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 377f55705d0fc0ae4b575e04ccf07b9e15ce232a..8967720d1f0b925466e435245dc9b5a72316a70c 100644 GIT binary patch delta 23 fcmcc8!Fr{Gb%WSS4kJ?qLo+KA^UZQA&1M4tXIcmt delta 23 fcmcc8!Fr{Gb%WSS4nqS414}DYqs?+F&1M4tXA1}r diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 4f7effb6c..d396f0682 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -2289,47 +2289,47 @@ msgstr "정의되지 않은 레이블: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "새로운 설정" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "설정이 변경됨" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "확장 기능이 변경됨" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "빌드 환경 버전이 최신이 아님" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "원본 디렉토리가 변경됨" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s에서 문서를 탐색하지 못했습니다: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "%r 영역이 등록되지 않았습니다" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "문서가 어느 toctree에도 포함되어 있지 않음" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "번역된 메시지의 용어 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "상호 참조에 대한 대체 텍스트를 결정할 수 없습니다. 버그일 수 있습니다." -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "'any' 상호 참조 %r에 대해 둘 이상의 대상이 발견되었습니다: %s 일 수 있습니다" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s 참조 대상을 찾을 수 없음: %s" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "%r 참조 대상을 찾을 수 없음: %s" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index b2f9c76ef69b637c4879adf34644675b81e4a070..3aa2eea0db0c50c8a55f890586040a8dd944afab 100644 GIT binary patch delta 21 ccmexk{>Oa70RavpQw2jaD--k0Cj?Bm0bZ>KOaK4? delta 21 ccmexk{>Oa70Rav}0|f(1D^sJ*Cj?Bm0bX7QL;wH) diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 48cc1b6d7..6a625a133 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index f6b8f1fdf4c090ccf803171458234b14a3ab7dcc..beb0cca99fb0430e04266e13c366edcad566821c 100644 GIT binary patch delta 21 ccmca\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 4df26c02e3be08ecc3365be823ad7051907349a1..0875a8e9780d7090189018848deaaf30dbc4a4a3 100644 GIT binary patch delta 21 dcmX@hf0lp4O=b=wQw2jaD--k051HRE0{~Ok2W9{O delta 21 dcmX@hf0lp4O=b>5a|HtfD?@|L51HRE0{~NF2UY+8 diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index aa88de677..47f330822 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 0c6f7ab309f5fade7ff314ec3d110a2b9f84f215..c1cad2db20c69bc8388659c1e9c9a1f0760dd0d7 100644 GIT binary patch delta 21 ccmX?TdeC%(xFCm-se+-Im5KRgdBH`T07&5l?f?J) delta 21 ccmX?TdeC%(xFCn2xq^X#m7&3AdBH`T07z{G-T(jq diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 8e6d2e301..cc676655a 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 51b26cf17d0fbe143b24ce06b7a5aea96fa6a537..28ed803e4d7f5679f12db711c0c0a04f063a3b8f 100644 GIT binary patch delta 21 ccmbQ~Hq&jxF#!%EQw2jaD--k0=LEck08$(V&Hw-a delta 21 ccmbQ~Hq&jxF#!%k0|f(1D^sJ*=LEck08z~b#sB~S diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 72be49d29..5f4c14882 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index ea33018c34b59f356fb2c488d6e5a58a7c7e9901..5b8078574b94d96b5ec9b71bcbfc889dd3c5cd7f 100644 GIT binary patch delta 23 ecmdlplX1^X#trT|97d)JhGteK=9~R>auonzYzHO) delta 23 ecmdlplX1^X#trT|9ERo!1_oA!2AlnLauony_y-mM diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 7a5d29cb8..2e96c770b 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -2293,47 +2293,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "bronmap is gewijzigd" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "meer dan één doel gevonden voor 'any' kruisverwijzing %r: is mogelijk %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 037a50dda914ca8788077dc30629815edaf539e5..64bff6699868dc1d1cdc422a9ff623f760a03caa 100644 GIT binary patch delta 23 fcmaF)lJVtB#tn*297d)JhGteK=9@L04j2IdbQcI^ delta 23 fcmaF)lJVtB#tn*29ERo!1_oA!2AegV4j2IdbE61V diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index ce79f2f4d..4ba930cc1 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -2291,47 +2291,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "nowa konfiguracja" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "konfiguracja zmieniona" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "rozszerzenie zmienione" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "katalog źródłowy został zmieniony" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "znaleziono więcej niż jeden cel dla cross-referencji „any” %r: może być %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 82ef657e6a62dd682ea231d8cadafae19fd60da5..3480771eefaa18a8d7bfc40165f3933dc885780c 100644 GIT binary patch delta 19 acmeyy{Ec}+2ZxcVf}xp}iTTC}X^a3x!v;\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 62d0fe7cdd73db80bd21bbdff7c929bd18f64fd1..8cceda2575e6257123e891c68a2fe7ab7dae14e6 100644 GIT binary patch delta 23 fcmaFziRH;BmJMPnIgCsd49%=e%s0!ebejMGdh!Vm delta 23 fcmaFziRH;BmJMPnISkDe3=FIc4K~ZIbejMGdVUE1 diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index e85940728..3d05faa80 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -2293,47 +2293,47 @@ msgstr "rótulo não definido: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Falha ao criar uma referência cruzada. Título ou legenda não encontrado: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "nova configuração" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "configuração alterada" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "extensões alteradas" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "a versão do ambiente de compilação não é a atual" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "diretório de fontes foi alterado" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Este ambiente é incompatível com o compilador selecionado, por favor escolha outro diretório de doctree." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Falha ao procurar documentos em %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "O domínio %r ainda não está registrado" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "toctree autorreferenciada encontrada. Ignorado." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "o documento não está incluído em nenhum toctree" @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "referências de termo inconsistentes na mensagem traduzida. original: {0}, traduzida: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "Não foi possível determinar o texto reserva para a referência cruzada. Pode ser um bug." -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "mais de um alvo localizado para “any” referência cruzada %r: poderia ser %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:alvo de referência %s não encontrado: %s" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "alvo de referência %r não encontrado: %s" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 189da1a31c3e366ab4a34ee334f3b8bc060ada0d..0594cd3fa42a7053a4b3293fe575f7ca4793d2a9 100644 GIT binary patch delta 21 ccmbQ^Fvnp-yfBB6se+-Im5KT0bm6T$07|F^WB>pF delta 21 ccmbQ^Fvnp-yfBBMfr5dhm8sF@bm6T$07_W~TmS$7 diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 805a046f1..837a095d2 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 70036d8ac02efb931255d19dc2e8ff62a6d90570..2d68a7409ffe3ef69ff1f1e914b525c3503522a7 100644 GIT binary patch delta 21 ccmX@)cF1jmgD8iQse+-Im5KRg57A$|08hUL$N&HU delta 21 ccmX@)cF1jmgD8igfr5dhm8sEY57A$|08elRzyJUM diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index da4f257b4..e383b8774 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index ed60773de470f52e26c83f4a546d63b8c2d39c2a..d1dc64cb27c73039580e99a7e2d79e4125635006 100644 GIT binary patch delta 23 ecmX@s#CWWUaf78ihmom*p_!G5`DRCXRwV#in+9+I delta 23 ecmX@s#CWWUaf78ihoOOjfu)tH(Pl?^RwV#iOa^EG diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 6573fe46a..0550603e9 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -2293,47 +2293,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "новая конфигурация" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "конфигурация изменена" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3441,23 +3441,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index 9348aac24f9ddf5dbf44cc7b47ea17d06019eabb..f7a945a5a0fa658f1f4abf6f2dc0944d9ad5f4e7 100644 GIT binary patch delta 21 ccmeB|>6h8CpN+%FRKd{9%EWy0aW)Tj07(A^HUIzs delta 21 ccmeB|>6h8CpN+%NT*1J=%Ftl*aW)Tj07#1lCIA2c diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index f0522841c..4e977ef71 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index e832231d038a5e2b438371054b4457a2a60f3dd4..1a09a1ad3980af06641c55c419cf1d0ea9f87363 100644 GIT binary patch delta 23 fcmX>yi{;2HmJPqAa2S~?7@Ap`m~Up9>Qn&$bF&Dd delta 23 fcmX>yi{;2HmJPqAa2OgW7+6}F8f|8p>Qn&$b7Tmb diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index ac17e79e5..6e3b76407 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -2290,47 +2290,47 @@ msgstr "nedefinovaná menovka: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "Zlyhalo vytvorenie krížového odkazu. nenájdení názov alebo titulok: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "nová konfigurácia" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "zmenená konfigurácia" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "zmenené rozšírenie" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "prostredie zostavenia nie je aktuálne" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "zdrojový adresár zmenený" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Toto prostredie nie je kompatibilné zo zvoleným zostavovačom, prosím, zvoľte iný adresár doctree." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Zlyhalo skenovanie dokumentov v %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Doména %r nie je zaregistrovaná" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "nájdený na seba odkazujúci strom obsahu. Ignorované." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "dokument nie je zahrnutý v žiadnom strome obsahu" @@ -3438,23 +3438,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "viac ako jeden cieľ krížového odkazu %r: môže byť %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "%r cieľ odkazu nenájdený: %s" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index f3df6bf0d5a6797081a91f903765b02505f9d077..16c4ca4795b290cc2f3b780e8cd2cfa4c53319bc 100644 GIT binary patch delta 21 ccmeyM^+9WcIWLEise+-Im5KRgdtO5h08i`%`~Uy| delta 21 ccmeyM^+9WcIWLEyfr5dhm8sEYdtO5h08gC-^Z)<= diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index ee13dc949..09e1129a0 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 1f91e9dab..94c26f6bc 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.3.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -2305,47 +2305,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose" " another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3455,23 +3455,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a" " bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index fe6ceba707f2c0072fc40b213ab3dba6e65f75de..51486fd4a756d4b150a17f773a0cb8b47758edb2 100644 GIT binary patch delta 23 fcmdn>f@RkWmJRzBa~PQ_7@Ap`m~TF|xMTtVe_9F| delta 23 fcmdn>f@RkWmJRzBa~K*Z7+6}F8f`wdxMTtVe+vo` diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index c37bf4ef4..67ad6ed1d 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -2288,47 +2288,47 @@ msgstr "etiketë e papërcaktuar: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "S’u arrit të krijohej një ndërreferencë. S’u gjet titull ose legjendë: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "formësim i ri" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "formësimi ndryshoi" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "zgjerimet u ndryshuan" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "version jo i tanishëm i mjedisit të montimit" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "drejtoria burim ka ndryshuar" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Ky mjedis është i papërputhshëm me montuesin e përzgjedhur, ju lutemi, zgjidhni një tjetër drejtori doctree." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "S’u arrit të skanohen dokumente te %s: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Përkatësia %r s’është e regjistruar" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "U gjet “toctree” që i referohet vetes. U shpërfill." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "dokumenti s’është i përfshirë në ndonjë toctree" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "referenca citimi pa njëtrajtësi, te mesazhi i përkthyer. origjinali: {0}, përkthimi: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "u gjet më shumë se një objektiv për ndërreferencën 'any' %r: mund të ishte %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "s’u gjet objektiv reference %s:%s: %s" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "s’u gjet objektiv reference %r: %s" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index c25573f129a98473a60613af0faef804c421d48e..7fd6a37fd5756bd6ef3a16a41c537cde9b1d7d2b 100644 GIT binary patch delta 21 dcmX@$dBAhSSs@N1Qw2jaD--k0SA|{+0svZ-2h#um delta 21 dcmX@$dBAhSSs@NX0|f(1D^sJ*SA|{+0svY@2g?8e diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index e4404d5ea..27b2b6a06 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -2289,47 +2289,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3437,23 +3437,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 4fa77d3b4bac8c33e6f5513911092316a7b247b8..c09c335346314f745c767ec2a8b6d10f64b9aa0e 100644 GIT binary patch delta 19 acmcb}a*<_12ZxcVf}xp}iTTC}2N?lDX9i&a delta 19 acmcb}a*<_12Zy1#f`NgRp~1!p2N?lD0|rq5 diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index f81d2e8d8..c8f23f4c7 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index a9f7e40c7477f69e07db9792f1f6eebd15295aac..cb17b429cfe9dc42e06fa7a6ba3b89187ecd5b08 100644 GIT binary patch delta 19 acmX@Za)xC>2ZxcVf}xp}iTTC}dl&&gsRmL2 delta 19 acmX@Za)xC>2Zy1#f`NgRp~1!pdl&&gMFv6u diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index b3b26cfc0..c69fc1351 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index f48bb2863db2ceaeb84b50abe3f34f5c5f161666..8e4b1a6cf42be1f09a4622e6db02941068feafc3 100644 GIT binary patch delta 21 ccmdmFy2*6IPXP`iQw2jaD--k0jDj0E0aQQ+q5uE@ delta 21 ccmdmFy2*6IPXP`?0|f(1D^sJ*jDj0E0aNh?ng9R* diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index f602eed09..66ddf3680 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 7e08cc15df73eae1b4b52ec032abced03cd78911..75bf2db88acc511924fc7d14e837089369003f68 100644 GIT binary patch delta 19 bcmey)@||VEHVz|G1w%6{6Z4Jxb}|A0NxcUF delta 19 bcmey)@||VEHV#8`1p@;sLxYX`b}|A0Nm&N* diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index aa8b5a55e..cba1f01cb 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index 4b98ea83a29be3901ddd83f3ba8743553af34df3..ca7261fc6b9bac86f83275113951a8531c37044f 100644 GIT binary patch delta 19 acmeyw{E2x&2ZxcVf}xp}iTTC}NsItRD+WRU delta 19 acmeyw{E2x&2Zy1#f`NgRp~1!pNsItQ#|AP0 diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index b0bc69ee7..8885065a5 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index a2dd9c7284e963fe2692f85f43fca4de1200fd7d..65366b33d312707086b2b418e74797386b5036f8 100644 GIT binary patch delta 23 ecmbPsih0^8<_$cx97d)JhGteK=9@)onKA%kxd%xA delta 23 ecmbPsih0^8<_$cx9ERo!1_oA!2Af4{nKA%kMF%+m diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index a652bc457..5fc22ea17 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -2291,47 +2291,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "yeni yapılandırma" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "yapılandırma değişti" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "uzantılar değişti" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "yapım ortamı sürümü şu anki değil" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "kaynak dizin değişti" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "Bu ortam seçilen oluşturucuyla uyumsuzdur, lütfen başka bir belge ağacı dizini seçin." -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s içinde belgeleri tarama başarısız oldu: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Etki alanı %r kayıtlı değil" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "kendinden kaynaklı toctree bulundu. Yoksayıldı." -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "belge herhangi bir toctree içine dahil değil" @@ -3439,23 +3439,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 986e7feeb2196474e8ae4deeaecc65e5018dc200..3a17f65e5947254e528a4fade6b0a7d3e90d6e63 100644 GIT binary patch delta 21 ccmeA-?Kj=\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 4452c8a820192e29183d1d4275166d04598ae12a..9169a42956fbc17d8b67dd49e2326f8871c79124 100644 GIT binary patch delta 19 acmeys{DFBw2ZxcVf}xp}iTTC}35)23 diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index ccb2ea57a..8549a23cd 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index e8f1bb86e766390f1added6eae153a311b7fa0e3..74fe603ee777e3bb5b15bb739185c1336486288e 100644 GIT binary patch delta 21 dcmX@7cTR7^LS7CdQw2jaD--k0D|wf40svHH2MGWG delta 21 dcmX@7cTR7^LS7C-a|HtfD?@|LD|wf40svF-2KfL0 diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index dbf7e9c24..415dea565 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -2288,47 +2288,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3436,23 +3436,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 795e831b90352f16a2f2739be31ff0084c6f1f61..be69bc98842c8b673e9dc7f8bfb27ee24941986b 100644 GIT binary patch delta 19 acmeys{DFBw2ZxcVf}xp}iTTC}35)23 diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index c610cb17e..a7f376a5d 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 9a1d1870a97b4090bb2774a234280a580509f995..ccb5796cddb7aff0db7e6bccbd83264cafe7f363 100644 GIT binary patch delta 23 fcmezPp84Z@<_)ToIgCsd49%=e%s1;!K9T|eeD4Wm delta 23 fcmezPp84Z@<_)ToISkDe3=FIc4L0jeK9T|ee0vF1 diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 8a93e4ab1..c5dd185c1 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" @@ -2302,47 +2302,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "新配置" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "配置有变化" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "扩展有变化" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "构建环境版本与当前环境不符" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "源文件目录已变化" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "本环境与选择的构建器不兼容,请选择其他的文档树目录。" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "在 %s 中扫描文档失败:%r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "没有注册 %r 域" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "目录树存在自引用,已忽略。" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "文档没有加入到任何目录树中" @@ -3450,23 +3450,23 @@ msgid "" "translated: {1}" msgstr "译文中的术语引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "找到了多个目标 'any' 交叉引用的目标不唯一 %r: 可能是 %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index cb6402ecb3ba608d2f10f5527ab1f7ac5e6c0b93..9d53828072aaccd84789a09efc2f99479d7dc512 100644 GIT binary patch delta 19 acmeyz{EvA;2ZxcVf}xp}iTTC}d5i!?^9E)B delta 19 acmeyz{EvA;2Zy1#f`NgRp~1!pd5i!?j|Nr% diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 6493e4e45..742446b88 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: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %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 6c038d6d8e041f2e0734b97f53dbf631f5336591..45521408989e36442b0fcc553d8801f6535526c3 100644 GIT binary patch delta 19 acmeBW>1CPF!C_>oU}$D#V!m-gEh7LoPX(0# delta 19 acmeBW>1CPF!C`2wU|?WnXs~fYEh7Ln>ji}X diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index a36d31347..d0e4dd7e7 100644 --- a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-10-17 00:10+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-10 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -2287,47 +2287,47 @@ msgstr "" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "" @@ -3435,23 +3435,23 @@ msgid "" "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 516ee51b541b387bc854350c9aba2d64e38b100e..0ae45eaf92456f39c3f1c68408d4b43cd4b80e43 100644 GIT binary patch delta 23 fcmdmdjA`>RrVX`;97d)JhGteK=9^m+*Es?JZrTW_ delta 23 fcmdmdjA`>RrVX`;9EJu829{Q)Mw?p`*Es?JZi@(@ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index faffb15c6..bfbbf3863 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: 2021-10-10 09:52+0000\n" +"POT-Creation-Date: 2021-10-25 16:47+0000\n" "PO-Revision-Date: 2021-10-16 06:15+0000\n" "Last-Translator: Steven Hsu \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" @@ -2295,47 +2295,47 @@ msgstr "未定義的標籤: %s" msgid "Failed to create a cross reference. A title or caption not found: %s" msgstr "無法建立一個交互參照。未找到標題或題目: %s" -#: sphinx/environment/__init__.py:75 +#: sphinx/environment/__init__.py:76 msgid "new config" msgstr "新的組態" -#: sphinx/environment/__init__.py:76 +#: sphinx/environment/__init__.py:77 msgid "config changed" msgstr "組態已變更" -#: sphinx/environment/__init__.py:77 +#: sphinx/environment/__init__.py:78 msgid "extensions changed" msgstr "擴充套件已變更" -#: sphinx/environment/__init__.py:204 +#: sphinx/environment/__init__.py:205 msgid "build environment version not current" msgstr "建立環境的版本不是目前的" -#: sphinx/environment/__init__.py:206 +#: sphinx/environment/__init__.py:207 msgid "source directory has changed" msgstr "來源資料夾已變更" -#: sphinx/environment/__init__.py:285 +#: sphinx/environment/__init__.py:286 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "這個環境與所選的 builder 不相容,請選擇另一個 doctree 資料夾。" -#: sphinx/environment/__init__.py:384 +#: sphinx/environment/__init__.py:385 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "無法掃描 %s 中的文件: %r" -#: sphinx/environment/__init__.py:511 +#: sphinx/environment/__init__.py:512 #, python-format msgid "Domain %r is not registered" msgstr "Domain %r 未被註冊" -#: sphinx/environment/__init__.py:592 +#: sphinx/environment/__init__.py:593 msgid "self referenced toctree found. Ignored." msgstr "找到自我參照的 toctree。已略過。" -#: sphinx/environment/__init__.py:634 +#: sphinx/environment/__init__.py:635 msgid "document isn't included in any toctree" msgstr "文件未被包含於任何 toctree" @@ -3443,23 +3443,23 @@ msgid "" "translated: {1}" msgstr "被翻譯訊息中有不一致的術語參照。原文: {0},譯文: {1}" -#: sphinx/transforms/post_transforms/__init__.py:117 +#: sphinx/transforms/post_transforms/__init__.py:118 msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." msgstr "無法為交互參照決定備用文字。可能是個錯誤。" -#: sphinx/transforms/post_transforms/__init__.py:157 +#: sphinx/transforms/post_transforms/__init__.py:158 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "為「任一個」交互參照 %r 找到多於一個目標:可能是 %s" -#: sphinx/transforms/post_transforms/__init__.py:205 +#: sphinx/transforms/post_transforms/__init__.py:206 #, python-format msgid "%s:%s reference target not found: %s" msgstr "%s:%s 參照目標未找到: %s" -#: sphinx/transforms/post_transforms/__init__.py:208 +#: sphinx/transforms/post_transforms/__init__.py:209 #, python-format msgid "%r reference target not found: %s" msgstr "%r 參照目標未找到: %s" From 13803a79e7179f40a27f46d5a5a05f1eebbcbb63 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Oct 2021 01:49:57 +0900 Subject: [PATCH 18/19] Support docutils-0.18: Consume iterator of Element.traverse() Since 0.18, Element.traverse() returns an iterator instead of intermediate object. As a result, the return value is always considered as truthy value. And it becomes fragile when the caller modifies the doctree on the loop. --- sphinx/builders/_epub_base.py | 8 ++++---- sphinx/builders/latex/transforms.py | 10 +++++----- sphinx/domains/index.py | 2 +- sphinx/domains/python.py | 2 +- sphinx/environment/adapters/toctree.py | 4 ++-- sphinx/ext/autosummary/__init__.py | 2 +- sphinx/ext/linkcode.py | 2 +- sphinx/ext/todo.py | 2 +- sphinx/ext/viewcode.py | 4 ++-- sphinx/transforms/__init__.py | 4 ++-- sphinx/transforms/i18n.py | 2 +- sphinx/transforms/post_transforms/code.py | 2 +- sphinx/util/nodes.py | 4 ++-- sphinx/writers/latex.py | 2 +- sphinx/writers/manpage.py | 4 ++-- 15 files changed, 27 insertions(+), 27 deletions(-) diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 2dfc35ecd..672ce7242 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -323,14 +323,14 @@ class EpubBuilder(StandaloneHTMLBuilder): # a) place them after the last existing footnote # b) place them after an (empty) Footnotes rubric # c) create an empty Footnotes rubric at the end of the document - fns = tree.traverse(nodes.footnote) + fns = list(tree.traverse(nodes.footnote)) if fns: fn = fns[-1] return fn.parent, fn.parent.index(fn) + 1 for node in tree.traverse(nodes.rubric): if len(node) == 1 and node.astext() == FOOTNOTES_RUBRIC_NAME: return node.parent, node.parent.index(node) + 1 - doc = tree.traverse(nodes.document)[0] + doc = list(tree.traverse(nodes.document))[0] rub = nodes.rubric() rub.append(nodes.Text(FOOTNOTES_RUBRIC_NAME)) doc.append(rub) @@ -339,10 +339,10 @@ class EpubBuilder(StandaloneHTMLBuilder): if show_urls == 'no': return if show_urls == 'footnote': - doc = tree.traverse(nodes.document)[0] + doc = list(tree.traverse(nodes.document))[0] fn_spot, fn_idx = footnote_spot(tree) nr = 1 - for node in tree.traverse(nodes.reference): + for node in list(tree.traverse(nodes.reference)): uri = node.get('refuri', '') if (uri.startswith('http:') or uri.startswith('https:') or uri.startswith('ftp:')) and uri not in node.astext(): diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py index a07393690..b85a9827c 100644 --- a/sphinx/builders/latex/transforms.py +++ b/sphinx/builders/latex/transforms.py @@ -45,7 +45,7 @@ class SubstitutionDefinitionsRemover(SphinxPostTransform): formats = ('latex',) def run(self, **kwargs: Any) -> None: - for node in self.document.traverse(nodes.substitution_definition): + for node in list(self.document.traverse(nodes.substitution_definition)): node.parent.remove(node) @@ -81,7 +81,7 @@ class ShowUrlsTransform(SphinxPostTransform): if show_urls is False or show_urls == 'no': return - for node in self.document.traverse(nodes.reference): + for node in list(self.document.traverse(nodes.reference)): uri = node.get('refuri', '') if uri.startswith(URI_SCHEMES): if uri.startswith('mailto:'): @@ -501,7 +501,7 @@ class BibliographyTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: citations = thebibliography() - for node in self.document.traverse(nodes.citation): + for node in list(self.document.traverse(nodes.citation)): node.parent.remove(node) citations += node @@ -602,9 +602,9 @@ class IndexInSectionTitleTransform(SphinxPostTransform): formats = ('latex',) def run(self, **kwargs: Any) -> None: - for node in self.document.traverse(nodes.title): + for node in list(self.document.traverse(nodes.title)): if isinstance(node.parent, nodes.section): - for i, index in enumerate(node.traverse(addnodes.index)): + for i, index in enumerate(list(node.traverse(addnodes.index))): # move the index node next to the section title node.remove(index) node.parent.insert(i + 1, index) diff --git a/sphinx/domains/index.py b/sphinx/domains/index.py index 9ecfae439..975ab7000 100644 --- a/sphinx/domains/index.py +++ b/sphinx/domains/index.py @@ -48,7 +48,7 @@ class IndexDomain(Domain): def process_doc(self, env: BuildEnvironment, docname: str, document: Node) -> None: """Process a document after it is read by the environment.""" entries = self.entries.setdefault(env.docname, []) - for node in document.traverse(addnodes.index): + for node in list(document.traverse(addnodes.index)): try: for entry in node['entries']: split_index_msg(entry[0], entry[1]) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 1a3bd60c7..9bb9a1e72 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -328,7 +328,7 @@ class PyXrefMixin: text = target[1:] elif prefix == '~': text = target.split('.')[-1] - for node in result.traverse(nodes.Text): + for node in list(result.traverse(nodes.Text)): node.parent[node.parent.index(node)] = nodes.Text(text) break elif isinstance(result, pending_xref) and env.config.python_use_unqualified_type_names: diff --git a/sphinx/environment/adapters/toctree.py b/sphinx/environment/adapters/toctree.py index a62e951d7..53328e812 100644 --- a/sphinx/environment/adapters/toctree.py +++ b/sphinx/environment/adapters/toctree.py @@ -193,13 +193,13 @@ class TocTree: for toplevel in children: # nodes with length 1 don't have any children anyway if len(toplevel) > 1: - subtrees = toplevel.traverse(addnodes.toctree) + subtrees = list(toplevel.traverse(addnodes.toctree)) if subtrees: toplevel[1][:] = subtrees # type: ignore else: toplevel.pop(1) # resolve all sub-toctrees - for subtocnode in toc.traverse(addnodes.toctree): + for subtocnode in list(toc.traverse(addnodes.toctree)): if not (subtocnode.get('hidden', False) and not includehidden): i = subtocnode.parent.index(subtocnode) + 1 diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 8bd3d50cd..478b5c9f3 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -583,7 +583,7 @@ def extract_summary(doc: List[str], document: Any) -> str: node = parse(doc, document.settings) if summary.endswith(WELL_KNOWN_ABBREVIATIONS): pass - elif not node.traverse(nodes.system_message): + elif not list(node.traverse(nodes.system_message)): # considered as that splitting by period does not break inline markups break diff --git a/sphinx/ext/linkcode.py b/sphinx/ext/linkcode.py index 6aaea0e9e..e88ba4c96 100644 --- a/sphinx/ext/linkcode.py +++ b/sphinx/ext/linkcode.py @@ -39,7 +39,7 @@ def doctree_read(app: Sphinx, doctree: Node) -> None: 'js': ['object', 'fullname'], } - for objnode in doctree.traverse(addnodes.desc): + for objnode in list(doctree.traverse(addnodes.desc)): domain = objnode.get('domain') uris: Set[str] = set() for signode in objnode: diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index 6b7c1b73b..beab0976d 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -131,7 +131,7 @@ class TodoListProcessor: def process(self, doctree: nodes.document, docname: str) -> None: todos: List[todo_node] = sum(self.domain.todos.values(), []) - for node in doctree.traverse(todolist): + for node in list(doctree.traverse(todolist)): if not self.config.todo_include_todos: node.parent.remove(node) continue diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index 5728f6077..bd1346daa 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -108,7 +108,7 @@ def doctree_read(app: Sphinx, doctree: Node) -> None: return False - for objnode in doctree.traverse(addnodes.desc): + for objnode in list(doctree.traverse(addnodes.desc)): if objnode.get('domain') != 'py': continue names: Set[str] = set() @@ -191,7 +191,7 @@ class ViewcodeAnchorTransform(SphinxPostTransform): node.replace_self(refnode) def remove_viewcode_anchors(self) -> None: - for node in self.document.traverse(viewcode_anchor): + for node in list(self.document.traverse(viewcode_anchor)): node.parent.remove(node) diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index ade46363a..134740929 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -128,7 +128,7 @@ class MoveModuleTargets(SphinxTransform): default_priority = 210 def apply(self, **kwargs: Any) -> None: - for node in self.document.traverse(nodes.target): + for node in list(self.document.traverse(nodes.target)): if not node['ids']: continue if ('ismod' in node and @@ -303,7 +303,7 @@ class FilterSystemMessages(SphinxTransform): def apply(self, **kwargs: Any) -> None: filterlevel = 2 if self.config.keep_warnings else 5 - for node in self.document.traverse(nodes.system_message): + for node in list(self.document.traverse(nodes.system_message)): if node['level'] < filterlevel: logger.debug('%s [filtered system message]', node.astext()) node.parent.remove(node) diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index d28376bec..d0bc8af5d 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -488,7 +488,7 @@ class RemoveTranslatableInline(SphinxTransform): return matcher = NodeMatcher(nodes.inline, translatable=Any) - for inline in self.document.traverse(matcher): # type: nodes.inline + for inline in list(self.document.traverse(matcher)): # type: nodes.inline inline.parent.remove(inline) inline.parent += inline.children diff --git a/sphinx/transforms/post_transforms/code.py b/sphinx/transforms/post_transforms/code.py index 52bca8e12..3c4c0ebab 100644 --- a/sphinx/transforms/post_transforms/code.py +++ b/sphinx/transforms/post_transforms/code.py @@ -42,7 +42,7 @@ class HighlightLanguageTransform(SphinxTransform): self.config.highlight_language) self.document.walkabout(visitor) - for node in self.document.traverse(addnodes.highlightlang): + for node in list(self.document.traverse(addnodes.highlightlang)): node.parent.remove(node) diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 78663e4c7..bc16e44c1 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -343,7 +343,7 @@ def clean_astext(node: Element) -> str: node = node.deepcopy() for img in node.traverse(nodes.image): img['alt'] = '' - for raw in node.traverse(nodes.raw): + for raw in list(node.traverse(nodes.raw)): raw.parent.remove(raw) return node.astext() @@ -408,7 +408,7 @@ def inline_all_toctrees(builder: "Builder", docnameset: Set[str], docname: str, Record all docnames in *docnameset*, and output docnames with *colorfunc*. """ tree = cast(nodes.document, tree.deepcopy()) - for toctreenode in tree.traverse(addnodes.toctree): + for toctreenode in list(tree.traverse(addnodes.toctree)): newnodes = [] includefiles = map(str, toctreenode['includefiles']) for includefile in includefiles: diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 869759ee5..3f032e616 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -651,7 +651,7 @@ class LaTeXTranslator(SphinxTranslator): raise nodes.SkipNode else: short = '' - if node.traverse(nodes.image): + if list(node.traverse(nodes.image)): short = ('[%s]' % self.escape(' '.join(clean_astext(node).split()))) try: diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 12fc31281..da5f4c241 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -56,7 +56,7 @@ class NestedInlineTransform: def apply(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.literal, nodes.emphasis, nodes.strong) - for node in self.document.traverse(matcher): # type: TextElement + for node in list(self.document.traverse(matcher)): # type: TextElement if any(matcher(subnode) for subnode in node): pos = node.parent.index(node) for subnode in reversed(list(node)): @@ -227,7 +227,7 @@ class ManualPageTranslator(SphinxTranslator, BaseTranslator): # overwritten -- don't make whole of term bold if it includes strong node def visit_term(self, node: Element) -> None: - if node.traverse(nodes.strong): + if list(node.traverse(nodes.strong)): self.body.append('\n') else: super().visit_term(node) From 5b4b95790a7c9557fd0ca5ea2e86e23d633ac6cb Mon Sep 17 00:00:00 2001 From: Drew Mares Date: Wed, 27 Oct 2021 11:39:40 -0500 Subject: [PATCH 19/19] Update Chocolatey Install Link The install URL returned a 404 but now it is updated to the new location --- doc/usage/installation.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/usage/installation.rst b/doc/usage/installation.rst index 7296e0a55..4b016f8f0 100644 --- a/doc/usage/installation.rst +++ b/doc/usage/installation.rst @@ -120,7 +120,7 @@ Chocolatey $ choco install sphinx You would need to `install Chocolatey -`_ +`_ before running this. For more information, refer to the `chocolatey page`__.