diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 3efae8ff2..5a9f929a7 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 @@ -33,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 diff --git a/CHANGES b/CHANGES index 68048b276..4c11f90f7 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`` @@ -60,13 +61,18 @@ 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 +* #9752: autodoc: Failed to detect type annotation for slots attribute * #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 * #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. +* #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 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/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 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/c.py b/sphinx/domains/c.py index e821f5bde..84878cd05 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 7e9d0fd02..b332ae422 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 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/__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, 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/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]: 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/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/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 5044fca06..0a326665c 100644 Binary files a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 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 c35efaaba..2d179b76d 100644 Binary files a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 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 e27eaf6f4..a3f6af4f8 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 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 7f09206ff..9e2239146 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 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 81da751c7..d25952003 100644 Binary files a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 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 cec083ce2..9a2acae34 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 8d41ef840..788caf254 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 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: 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 9986bd0f2..1382c58e1 100644 Binary files a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index c9bc00025..39a4ff3aa 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 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: 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 92d174fb8..279b662be 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 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 4f49b9069..1edd1f6ce 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 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 b1d65456e..ecfe239e2 100644 Binary files a/sphinx/locale/el/LC_MESSAGES/sphinx.mo and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 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 1f6bb740d..fc32de414 100644 Binary files a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index 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 b01fd479c..ce05902b5 100644 Binary files a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index 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 f379e835c..b086844a0 100644 Binary files a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index 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 422be8446..ef786bb99 100644 Binary files a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 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 1db41e009..70b18f66e 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 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 647e07b2c..6be71bb04 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 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 5f10d03c6..a88bcd00b 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 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 3368675d1..63f13a9ed 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index da068520e..ae50523d7 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 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: 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 54857f9e6..df47928f2 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 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 3ed8744cf..f8d9863da 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 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 9c7b046ea..107d50267 100644 Binary files a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index 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 9dad4479f..910661b7c 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 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 7e9018c15..958060fc0 100644 Binary files a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 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 58a1dc970..fe46dd965 100644 Binary files a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 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 bde19693c..52c2453c1 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 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 6d6349498..c6eed34f9 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 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 1c22ece53..9c736fd79 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 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 b7194a8ba..6eac0d550 100644 Binary files a/sphinx/locale/is/LC_MESSAGES/sphinx.mo and b/sphinx/locale/is/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.po b/sphinx/locale/is/LC_MESSAGES/sphinx.po index 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 38990544f..f4711179e 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 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 a7ee9a309..c924bc578 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 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 377f55705..8967720d1 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 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 b2f9c76ef..3aa2eea0d 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 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 f6b8f1fdf..beb0cca99 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index e000f1f35..477a5540f 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 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: 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 4df26c02e..0875a8e97 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 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 0c6f7ab30..c1cad2db2 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 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 51b26cf17..28ed803e4 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 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 ea33018c3..5b8078574 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 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 037a50dda..64bff6699 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 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 82ef657e6..3480771ee 100644 Binary files a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 841b40864..7878d5a19 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 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 (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 62d0fe7cd..8cceda257 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 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 189da1a31..0594cd3fa 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index 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 70036d8ac..2d68a7409 100644 Binary files a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 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 ed60773de..d1dc64cb2 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 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 9348aac24..f7a945a5a 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 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 e832231d0..1a09a1ad3 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 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 f3df6bf0d..16c4ca479 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 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 fe6ceba70..51486fd4a 100644 Binary files a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.po b/sphinx/locale/sq/LC_MESSAGES/sphinx.po index 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 c25573f12..7fd6a37fd 100644 Binary files a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 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 4fa77d3b4..c09c33534 100644 Binary files a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 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 a9f7e40c7..cb17b429c 100644 Binary files a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 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 f48bb2863..8e4b1a6cf 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 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 7e08cc15d..75bf2db88 100644 Binary files a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 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 4b98ea83a..ca7261fc6 100644 Binary files a/sphinx/locale/te/LC_MESSAGES/sphinx.mo and b/sphinx/locale/te/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 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 a2dd9c728..65366b33d 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 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 986e7feeb..3a17f65e5 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 3c5da168a..d512d5460 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 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: 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 4452c8a82..9169a4295 100644 Binary files a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 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 e8f1bb86e..74fe603ee 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 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 795e831b9..be69bc988 100644 Binary files a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo and b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index 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 9a1d1870a..ccb5796cd 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 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 cb6402ecb..9d5382807 100644 Binary files a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 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 6c038d6d8..455214089 100644 Binary files a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.po index 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 516ee51b5..0ae45eaf9 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 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" 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 { 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/__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: 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/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: diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 25c82940c..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: @@ -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: 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) 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', '',