Merge branch '4.x' into 9756_classmethod_not_having_func

This commit is contained in:
Takeshi KOMIYA 2021-10-27 02:05:36 +09:00 committed by GitHub
commit 096108ccac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
156 changed files with 1021 additions and 990 deletions

View File

@ -15,6 +15,8 @@ jobs:
ref: 4.x ref: 4.x
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with:
python-version: 3.9 # https://github.com/transifex/transifex-client/pull/330
- name: Install dependencies - name: Install dependencies
run: pip install -U babel jinja2 transifex-client run: pip install -U babel jinja2 transifex-client
- name: Extract translations from source code - name: Extract translations from source code
@ -33,6 +35,8 @@ jobs:
ref: 4.x ref: 4.x
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v2 uses: actions/setup-python@v2
with:
python-version: 3.9 # https://github.com/transifex/transifex-client/pull/330
- name: Install dependencies - name: Install dependencies
run: pip install -U babel jinja2 transifex-client run: pip install -U babel jinja2 transifex-client
- name: Extract translations from source code - name: Extract translations from source code

View File

@ -28,6 +28,7 @@ Incompatible changes
Deprecated Deprecated
---------- ----------
* ``sphinx.ext.autodoc.AttributeDocumenter._datadescriptor``
* ``sphinx.writers.html.HTMLTranslator._fieldlist_row_index`` * ``sphinx.writers.html.HTMLTranslator._fieldlist_row_index``
* ``sphinx.writers.html.HTMLTranslator._table_row_index`` * ``sphinx.writers.html.HTMLTranslator._table_row_index``
* ``sphinx.writers.html5.HTML5Translator._fieldlist_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 * #9657: autodoc: The base class for a subclass of mocked object is incorrect
* #9607: autodoc: Incorrect base class detection for the subclasses of the * #9607: autodoc: Incorrect base class detection for the subclasses of the
generic class 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 * #9756: autodoc: Crashed if classmethod does not have __func__ attribute
* #9630: autosummary: Failed to build summary table if :confval:`primary_domain` * #9630: autosummary: Failed to build summary table if :confval:`primary_domain`
is not 'py' is not 'py'
* #9670: html: Fix download file with special characters * #9670: html: Fix download file with special characters
* #9710: html: Wrong styles for even/odd rows in nested tables * #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, * #9649: HTML search: when objects have the same name but in different domains,
return all of them as result instead of just one. 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 * #9678: linkcheck: file extension was shown twice in warnings
* #9697: py domain: An index entry with parens was registered for ``py:method`` * #9697: py domain: An index entry with parens was registered for ``py:method``
directive with ``:property:`` option directive with ``:property:`` option

View File

@ -22,6 +22,11 @@ The following is a list of deprecated interfaces.
- (will be) Removed - (will be) Removed
- Alternatives - Alternatives
* - ``sphinx.ext.autodoc.AttributeDocumenter._datadescriptor``
- 4.3
- 6.0
- N/A
* - ``sphinx.writers.html.HTMLTranslator._fieldlist_row_index`` * - ``sphinx.writers.html.HTMLTranslator._fieldlist_row_index``
- 4.3 - 4.3
- 6.0 - 6.0

View File

@ -2637,10 +2637,8 @@ Options for the linkcheck builder
A regular expression that matches a URI. A regular expression that matches a URI.
*auth_info* *auth_info*
Authentication information to use for that URI. The value can be anything Authentication information to use for that URI. The value can be anything
that is understood by the ``requests`` library (see `requests that is understood by the ``requests`` library (see :ref:`requests
Authentication <requests-auth>`_ for details). Authentication <requests:authentication>` for details).
.. _requests-auth: https://requests.readthedocs.io/en/master/user/authentication/
The ``linkcheck`` builder will use the first matching ``auth_info`` value 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 it can find in the :confval:`linkcheck_auth` list, so values earlier in the

View File

@ -323,14 +323,14 @@ class EpubBuilder(StandaloneHTMLBuilder):
# a) place them after the last existing footnote # a) place them after the last existing footnote
# b) place them after an (empty) Footnotes rubric # b) place them after an (empty) Footnotes rubric
# c) create an empty Footnotes rubric at the end of the document # 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: if fns:
fn = fns[-1] fn = fns[-1]
return fn.parent, fn.parent.index(fn) + 1 return fn.parent, fn.parent.index(fn) + 1
for node in tree.traverse(nodes.rubric): for node in tree.traverse(nodes.rubric):
if len(node) == 1 and node.astext() == FOOTNOTES_RUBRIC_NAME: if len(node) == 1 and node.astext() == FOOTNOTES_RUBRIC_NAME:
return node.parent, node.parent.index(node) + 1 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 = nodes.rubric()
rub.append(nodes.Text(FOOTNOTES_RUBRIC_NAME)) rub.append(nodes.Text(FOOTNOTES_RUBRIC_NAME))
doc.append(rub) doc.append(rub)
@ -339,10 +339,10 @@ class EpubBuilder(StandaloneHTMLBuilder):
if show_urls == 'no': if show_urls == 'no':
return return
if show_urls == 'footnote': if show_urls == 'footnote':
doc = tree.traverse(nodes.document)[0] doc = list(tree.traverse(nodes.document))[0]
fn_spot, fn_idx = footnote_spot(tree) fn_spot, fn_idx = footnote_spot(tree)
nr = 1 nr = 1
for node in tree.traverse(nodes.reference): for node in list(tree.traverse(nodes.reference)):
uri = node.get('refuri', '') uri = node.get('refuri', '')
if (uri.startswith('http:') or uri.startswith('https:') or if (uri.startswith('http:') or uri.startswith('https:') or
uri.startswith('ftp:')) and uri not in node.astext(): uri.startswith('ftp:')) and uri not in node.astext():

View File

@ -45,7 +45,7 @@ class SubstitutionDefinitionsRemover(SphinxPostTransform):
formats = ('latex',) formats = ('latex',)
def run(self, **kwargs: Any) -> None: 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) node.parent.remove(node)
@ -81,7 +81,7 @@ class ShowUrlsTransform(SphinxPostTransform):
if show_urls is False or show_urls == 'no': if show_urls is False or show_urls == 'no':
return return
for node in self.document.traverse(nodes.reference): for node in list(self.document.traverse(nodes.reference)):
uri = node.get('refuri', '') uri = node.get('refuri', '')
if uri.startswith(URI_SCHEMES): if uri.startswith(URI_SCHEMES):
if uri.startswith('mailto:'): if uri.startswith('mailto:'):
@ -501,7 +501,7 @@ class BibliographyTransform(SphinxPostTransform):
def run(self, **kwargs: Any) -> None: def run(self, **kwargs: Any) -> None:
citations = thebibliography() citations = thebibliography()
for node in self.document.traverse(nodes.citation): for node in list(self.document.traverse(nodes.citation)):
node.parent.remove(node) node.parent.remove(node)
citations += node citations += node
@ -602,9 +602,9 @@ class IndexInSectionTitleTransform(SphinxPostTransform):
formats = ('latex',) formats = ('latex',)
def run(self, **kwargs: Any) -> None: 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): 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 # move the index node next to the section title
node.remove(index) node.remove(index)
node.parent.insert(i + 1, index) node.parent.insert(i + 1, index)

View File

@ -92,7 +92,7 @@ _id_prefix = [None, 'c.', 'Cv2.']
_string_re = re.compile(r"[LuU8]?('([^'\\]*(?:\\.[^'\\]*)*)'" _string_re = re.compile(r"[LuU8]?('([^'\\]*(?:\\.[^'\\]*)*)'"
r'|"([^"\\]*(?:\\.[^"\\]*)*)")', re.S) r'|"([^"\\]*(?:\\.[^"\\]*)*)")', re.S)
_simple_type_sepcifiers_re = re.compile(r"""(?x) _simple_type_specifiers_re = re.compile(r"""(?x)
\b( \b(
void|_Bool|bool void|_Bool|bool
# Integer # Integer
@ -2584,7 +2584,7 @@ class DefinitionParser(BaseParser):
# fundamental types, https://en.cppreference.com/w/c/language/type # fundamental types, https://en.cppreference.com/w/c/language/type
# and extensions # and extensions
self.skip_ws() self.skip_ws()
if self.match(_simple_type_sepcifiers_re): if self.match(_simple_type_specifiers_re):
return ASTTrailingTypeSpecFundamental(self.matched_text) return ASTTrailingTypeSpecFundamental(self.matched_text)
# prefixed # prefixed

View File

@ -335,7 +335,7 @@ _keywords = [
] ]
_simple_type_sepcifiers_re = re.compile(r"""(?x) _simple_type_specifiers_re = re.compile(r"""(?x)
\b( \b(
auto|void|bool auto|void|bool
# Integer # Integer
@ -5859,7 +5859,7 @@ class DefinitionParser(BaseParser):
# fundamental types, https://en.cppreference.com/w/cpp/language/type # fundamental types, https://en.cppreference.com/w/cpp/language/type
# and extensions # and extensions
self.skip_ws() self.skip_ws()
if self.match(_simple_type_sepcifiers_re): if self.match(_simple_type_specifiers_re):
return ASTTrailingTypeSpecFundamental(self.matched_text) return ASTTrailingTypeSpecFundamental(self.matched_text)
# decltype # decltype

View File

@ -48,7 +48,7 @@ class IndexDomain(Domain):
def process_doc(self, env: BuildEnvironment, docname: str, document: Node) -> None: def process_doc(self, env: BuildEnvironment, docname: str, document: Node) -> None:
"""Process a document after it is read by the environment.""" """Process a document after it is read by the environment."""
entries = self.entries.setdefault(env.docname, []) entries = self.entries.setdefault(env.docname, [])
for node in document.traverse(addnodes.index): for node in list(document.traverse(addnodes.index)):
try: try:
for entry in node['entries']: for entry in node['entries']:
split_index_msg(entry[0], entry[1]) split_index_msg(entry[0], entry[1])

View File

@ -328,7 +328,7 @@ class PyXrefMixin:
text = target[1:] text = target[1:]
elif prefix == '~': elif prefix == '~':
text = target.split('.')[-1] 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) node.parent[node.parent.index(node)] = nodes.Text(text)
break break
elif isinstance(result, pending_xref) and env.config.python_use_unqualified_type_names: elif isinstance(result, pending_xref) and env.config.python_use_unqualified_type_names:

View File

@ -45,6 +45,7 @@ if TYPE_CHECKING:
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
default_settings: Dict[str, Any] = { default_settings: Dict[str, Any] = {
'auto_id_prefix': 'id',
'embed_images': False, 'embed_images': False,
'embed_stylesheet': False, 'embed_stylesheet': False,
'cloak_email_addresses': True, 'cloak_email_addresses': True,

View File

@ -193,13 +193,13 @@ class TocTree:
for toplevel in children: for toplevel in children:
# nodes with length 1 don't have any children anyway # nodes with length 1 don't have any children anyway
if len(toplevel) > 1: if len(toplevel) > 1:
subtrees = toplevel.traverse(addnodes.toctree) subtrees = list(toplevel.traverse(addnodes.toctree))
if subtrees: if subtrees:
toplevel[1][:] = subtrees # type: ignore toplevel[1][:] = subtrees # type: ignore
else: else:
toplevel.pop(1) toplevel.pop(1)
# resolve all sub-toctrees # 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 if not (subtocnode.get('hidden', False) and
not includehidden): not includehidden):
i = subtocnode.parent.index(subtocnode) + 1 i = subtocnode.parent.index(subtocnode) + 1

View File

@ -33,9 +33,12 @@ class MetadataCollector(EnvironmentCollector):
Keep processing minimal -- just return what docutils says. 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] md = app.env.metadata[app.env.docname]
for node in doctree[0]: for node in doctree[index]: # type: ignore
# nodes are multiply inherited... # nodes are multiply inherited...
if isinstance(node, nodes.authors): if isinstance(node, nodes.authors):
authors = cast(List[nodes.author], node) authors = cast(List[nodes.author], node)
@ -58,7 +61,7 @@ class MetadataCollector(EnvironmentCollector):
value = 0 value = 0
md[name] = value md[name] = value
doctree.pop(0) doctree.pop(index)
def setup(app: Sphinx) -> Dict[str, Any]: def setup(app: Sphinx) -> Dict[str, Any]:

View File

@ -2329,12 +2329,11 @@ class SlotsMixin(DataDocumenterMixinBase):
return ret return ret
def should_suppress_directive_header(self) -> bool: def should_suppress_value_header(self) -> bool:
if self.object is SLOTSATTR: if self.object is SLOTSATTR:
self._datadescriptor = True
return True return True
else: else:
return super().should_suppress_directive_header() return super().should_suppress_value_header()
def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]: def get_doc(self, ignore: int = None) -> Optional[List[List[str]]]:
if self.object is SLOTSATTR: if self.object is SLOTSATTR:
@ -2352,6 +2351,15 @@ class SlotsMixin(DataDocumenterMixinBase):
else: else:
return super().get_doc(ignore) # type: ignore 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): class RuntimeInstanceAttributeMixin(DataDocumenterMixinBase):
""" """

View File

@ -583,7 +583,7 @@ def extract_summary(doc: List[str], document: Any) -> str:
node = parse(doc, document.settings) node = parse(doc, document.settings)
if summary.endswith(WELL_KNOWN_ABBREVIATIONS): if summary.endswith(WELL_KNOWN_ABBREVIATIONS):
pass 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 # considered as that splitting by period does not break inline markups
break break

View File

@ -39,7 +39,7 @@ def doctree_read(app: Sphinx, doctree: Node) -> None:
'js': ['object', 'fullname'], 'js': ['object', 'fullname'],
} }
for objnode in doctree.traverse(addnodes.desc): for objnode in list(doctree.traverse(addnodes.desc)):
domain = objnode.get('domain') domain = objnode.get('domain')
uris: Set[str] = set() uris: Set[str] = set()
for signode in objnode: for signode in objnode:

View File

@ -131,7 +131,7 @@ class TodoListProcessor:
def process(self, doctree: nodes.document, docname: str) -> None: def process(self, doctree: nodes.document, docname: str) -> None:
todos: List[todo_node] = sum(self.domain.todos.values(), []) 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: if not self.config.todo_include_todos:
node.parent.remove(node) node.parent.remove(node)
continue continue

View File

@ -108,7 +108,7 @@ def doctree_read(app: Sphinx, doctree: Node) -> None:
return False return False
for objnode in doctree.traverse(addnodes.desc): for objnode in list(doctree.traverse(addnodes.desc)):
if objnode.get('domain') != 'py': if objnode.get('domain') != 'py':
continue continue
names: Set[str] = set() names: Set[str] = set()
@ -191,7 +191,7 @@ class ViewcodeAnchorTransform(SphinxPostTransform):
node.replace_self(refnode) node.replace_self(refnode)
def remove_viewcode_anchors(self) -> None: 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) node.parent.remove(node)

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "ny konfiguration" msgstr "ny konfiguration"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "udvidelser ændret" msgstr "udvidelser ændret"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "kildemappe er ændret" msgstr "kildemappe er ændret"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3439,23 +3439,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3439,23 +3439,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -10,7 +10,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "νέα παραμετροποίηση" msgstr "νέα παραμετροποίηση"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "η παραμετροποίηση άλλαξε" msgstr "η παραμετροποίηση άλλαξε"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "αλλαγμένες επεκτάσεις" msgstr "αλλαγμένες επεκτάσεις"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα" msgstr "η έκδοση του περιβάλλοντος μεταλώττισης δεν είναι η τρέχουσα"
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "ο πηγαίος κατάλογος έχει αλλάξει" msgstr "ο πηγαίος κατάλογος έχει αλλάξει"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree." msgstr "Το περιβάλλον δεν είναι συμβατό με τον επιλεγμένο μεταγλωττιστή, παρακαλείστε να επιλέξετε ένα διαφορετικό κατάλογο toctree."
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r" msgstr "Αδυναμία σάρωσης εγγράφων σε %s: %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "Ο τομέας %r δεν είναι καταχωρημένος" msgstr "Ο τομέας %r δεν είναι καταχωρημένος"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί." msgstr "Βρέθηκε αυτοαναφερόμενο toctree. Θα αγνοηθεί."
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree" msgstr "το έγγραφο δεν συμπεριλαμβάνεται σε κανένα toctree"
@ -3438,23 +3438,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}" msgstr "ασυνεπείς αναφορές όρων στα μεταφρασμένα μηνύματα. αρχικό: {0}, μεταφρασμένο: {1}"
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "περισσότεροι από ένας στόχοι βρέθηκαν για 'οποιαδήποτε' παραπομπή %r: θα μπορούσε να είναι %s" msgstr "περισσότεροι από ένας στόχοι βρέθηκαν για 'οποιαδήποτε' παραπομπή %r: θα μπορούσε να είναι %s"
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -14,7 +14,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "nueva configuración" msgstr "nueva configuración"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "configuración modificada" msgstr "configuración modificada"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "extensiones modificadas" msgstr "extensiones modificadas"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "la versión del entorno de compilación no es actual" 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" msgid "source directory has changed"
msgstr "directorio fuente ha cambiado" msgstr "directorio fuente ha cambiado"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "Este entorno es incompatible con el generador seleccionado, elija otro directorio doctree." 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 #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "Error al escanear los documentos en %s: %r" msgstr "Error al escanear los documentos en %s: %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "Dominio %r no está registrado" msgstr "Dominio %r no está registrado"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "toctree auto referenciado encontrado. Ignorado." msgstr "toctree auto referenciado encontrado. Ignorado."
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "documento no está incluido en ningún toctree" msgstr "documento no está incluido en ningún toctree"
@ -3442,23 +3442,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "referencias de término inconsistentes en el mensaje traducido. original: {0}, traducido: {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 "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "See keskkond pole valitud ehitajaga ühilduv, palun vali mõni teine dokumendipuu kataloog." 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 #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "dokument pole ühegi sisukorrapuu osa" msgstr "dokument pole ühegi sisukorrapuu osa"
@ -3439,23 +3439,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s" msgstr "شکست در ایجاد ارجاع متقابل. عنوان یا زیرنویس پیدا نشد: %s"
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "پیکربندی جدید" msgstr "پیکربندی جدید"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "پیکربندی تغییر داده شد" msgstr "پیکربندی تغییر داده شد"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "افزونه‌ها تغییر کردند" msgstr "افزونه‌ها تغییر کردند"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "نسخه‌ی محیط ساخت به‌روز نیست" msgstr "نسخه‌ی محیط ساخت به‌روز نیست"
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "شاخه ی منبع تغییر کرد" msgstr "شاخه ی منبع تغییر کرد"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید." msgstr "این محیط با سازنده‌ی انتخاب شده سازگار نیست، لطفاً یک خوشه‌ی اسناد دیگری را انتخاب کنید."
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "پویش اسناد %s: %r شکست خورد" msgstr "پویش اسناد %s: %r شکست خورد"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "دامنه ی %r ثبت نشده" msgstr "دامنه ی %r ثبت نشده"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود." msgstr "درختواره‌ی فهرست مطالب با ارجاع به خود پیدا شده. نادیده گرفته می‌شود."
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده" msgstr "سند در هیچ درختواره‌ی فهرست مطالبی گنجانده نشده"
@ -3439,23 +3439,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "ارجاعات اصطلاحی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}" msgstr "ارجاعات اصطلاحی ناهناهنگ در پیام‌های ترجمه شده. اصلی:{0}، ترجمه شده:{1}"
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "امکان تشخیص متن جایگزین برای ارجاع متقابل نبود. شاید یک اشکال برنامه نویسی باشد." msgstr "امکان تشخیص متن جایگزین برای ارجاع متقابل نبود. شاید یک اشکال برنامه نویسی باشد."
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "برای «هر» ارجاع متقابل بیشتر از یک هفد پیدا شد: %r شاید %s باشد" msgstr "برای «هر» ارجاع متقابل بیشتر از یک هفد پیدا شد: %r شاید %s باشد"
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "%s:%s مرجع هدف پیدا نشد: %s" msgstr "%s:%s مرجع هدف پیدا نشد: %s"
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "مقصد ارجاع %r پیدا نشد %s" msgstr "مقصد ارجاع %r پیدا نشد %s"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -33,7 +33,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\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" 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" 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" msgid "new config"
msgstr "nouvelle configuration" msgstr "nouvelle configuration"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "la configuration a changé" msgstr "la configuration a changé"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "les extensions ont changé" msgstr "les extensions ont changé"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "version non à jour de lenvironnement de construction" msgstr "version non à jour de lenvironnement de construction"
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "le répertoire racine a changé" msgstr "le répertoire racine a changé"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "Cet environnement est incompatible avec le constructeur sélectionné, veuillez choisir un autre répertoire doctree." 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 #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "Échec du scan des documents dans %s : %r" msgstr "Échec du scan des documents dans %s : %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "le domaine %r n'est pas enregistré." msgstr "le domaine %r n'est pas enregistré."
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." 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." 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" msgid "document isn't included in any toctree"
msgstr "Le document n'est inclus dans aucune table des matières de l'arborescence." msgstr "Le document n'est inclus dans aucune table des matières de l'arborescence."
@ -3461,23 +3461,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "ncohérences de références de terme dans le message traduit. Original : {0}, traduit : {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 "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "नव विन्यास" msgstr "नव विन्यास"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "विन्यास परिवर्तित" msgstr "विन्यास परिवर्तित"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "आयाम परिवर्तित" msgstr "आयाम परिवर्तित"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है "
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है "
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. "
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई."
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है"
@ -3439,23 +3439,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "अनुवादित संदेश में असंगत शब्द के प्रसंग. मूल: {0}, अनुवादित: {1}" msgstr "अनुवादित संदेश में असंगत शब्द के प्रसंग. मूल: {0}, अनुवादित: {1}"
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "किसी भी पारस्परिक-सन्दर्भ के लिए एक से अधिक लक्ष्य मिले %r: %s संभव" msgstr "किसी भी पारस्परिक-सन्दर्भ के लिए एक से अधिक लक्ष्य मिले %r: %s संभव"
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "forrás mappa megváltozott" msgstr "forrás mappa megváltozott"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3441,23 +3441,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "konfigurasi baru" msgstr "konfigurasi baru"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "konfigurasi berubah" msgstr "konfigurasi berubah"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "ekstensi berubah" msgstr "ekstensi berubah"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "membangun lingkungan bukan versi saat ini" msgstr "membangun lingkungan bukan versi saat ini"
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "direktori sumber telah berubah" msgstr "direktori sumber telah berubah"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "Lingkungan ini tidak kompatibel dengan pembangun yang dipilih, silakan pilih direktori doctree lain." 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 #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "Gagal memindai dokumen dalam %s: %r" msgstr "Gagal memindai dokumen dalam %s: %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "Domain %r tidak terdaftar" msgstr "Domain %r tidak terdaftar"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "totree referensikan sendiri ditemukan. Diabaikan" msgstr "totree referensikan sendiri ditemukan. Diabaikan"
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "dokumen tidak termasuk dalam toctree" msgstr "dokumen tidak termasuk dalam toctree"
@ -3440,23 +3440,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "referensi istilah yang tidak konsisten dalam pesan yang diterjemahkan. asli: {0}, diterjemahkan: {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 "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -12,7 +12,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3440,23 +3440,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -23,7 +23,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "新しい設定" msgstr "新しい設定"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "変更された設定" msgstr "変更された設定"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "変更された拡張" msgstr "変更された拡張"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "ビルド環境のバージョンが最新ではありません" msgstr "ビルド環境のバージョンが最新ではありません"
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "ソースディレクトリが変更されました" msgstr "ソースディレクトリが変更されました"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。"
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "%s のドキュメントをスキャンできませんでした: %r " msgstr "%s のドキュメントをスキャンできませんでした: %r "
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "ドメイン %r はまだ登録されていません" msgstr "ドメイン %r はまだ登録されていません"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "自己参照している toctree が見つかりました。無視します。" msgstr "自己参照している toctree が見つかりました。無視します。"
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "ドキュメントはどの toctree にも含まれていません" msgstr "ドキュメントはどの toctree にも含まれていません"
@ -3451,23 +3451,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "翻訳されたメッセージの用語参照が矛盾しています。原文: {0}、翻訳: {1}" msgstr "翻訳されたメッセージの用語参照が矛盾しています。原文: {0}、翻訳: {1}"
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "'any' クロスリファレンス %r のターゲットが1つ以上みつかりました。 %s に参照を設定します。" msgstr "'any' クロスリファレンス %r のターゲットが1つ以上みつかりました。 %s に参照を設定します。"
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s" msgstr "상호 참조를 생성하지 못했습니다. 제목 또는 캡션을 찾을 수 없습니다: %s"
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "새로운 설정" msgstr "새로운 설정"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "설정이 변경됨" msgstr "설정이 변경됨"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "확장 기능이 변경됨" msgstr "확장 기능이 변경됨"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "빌드 환경 버전이 최신이 아님" msgstr "빌드 환경 버전이 최신이 아님"
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "원본 디렉토리가 변경됨" msgstr "원본 디렉토리가 변경됨"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오." msgstr "이 환경은 선택한 빌더와 호환되지 않습니다. 다른 doctree 디렉토리를 선택하십시오."
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "%s에서 문서를 탐색하지 못했습니다: %r" msgstr "%s에서 문서를 탐색하지 못했습니다: %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "%r 영역이 등록되지 않았습니다" msgstr "%r 영역이 등록되지 않았습니다"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다." msgstr "자체 참조된 toctree가 발견되었습니다. 무시합니다."
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "문서가 어느 toctree에도 포함되어 있지 않음" msgstr "문서가 어느 toctree에도 포함되어 있지 않음"
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "번역된 메시지의 용어 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}" msgstr "번역된 메시지의 용어 참조가 일치하지 않습니다. 원본: {0}, 번역: {1}"
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "상호 참조에 대한 대체 텍스트를 결정할 수 없습니다. 버그일 수 있습니다." msgstr "상호 참조에 대한 대체 텍스트를 결정할 수 없습니다. 버그일 수 있습니다."
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "'any' 상호 참조 %r에 대해 둘 이상의 대상이 발견되었습니다: %s 일 수 있습니다" msgstr "'any' 상호 참조 %r에 대해 둘 이상의 대상이 발견되었습니다: %s 일 수 있습니다"
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "%s:%s 참조 대상을 찾을 수 없음: %s" msgstr "%s:%s 참조 대상을 찾을 수 없음: %s"
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "%r 참조 대상을 찾을 수 없음: %s" msgstr "%r 참조 대상을 찾을 수 없음: %s"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3436,23 +3436,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "bronmap is gewijzigd" msgstr "bronmap is gewijzigd"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3441,23 +3441,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -11,7 +11,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "nowa konfiguracja" msgstr "nowa konfiguracja"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "konfiguracja zmieniona" msgstr "konfiguracja zmieniona"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "rozszerzenie zmienione" msgstr "rozszerzenie zmienione"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "katalog źródłowy został zmieniony" msgstr "katalog źródłowy został zmieniony"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "Domena %r nie jest zarejestrowana" msgstr "Domena %r nie jest zarejestrowana"
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3439,23 +3439,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -7,7 +7,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3435,23 +3435,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

View File

@ -13,7 +13,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\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" 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" 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" msgid "new config"
msgstr "nova configuração" msgstr "nova configuração"
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "configuração alterada" msgstr "configuração alterada"
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "extensões alteradas" msgstr "extensões alteradas"
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "a versão do ambiente de compilação não é a atual" 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" msgid "source directory has changed"
msgstr "diretório de fontes foi alterado" msgstr "diretório de fontes foi alterado"
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "Este ambiente é incompatível com o compilador selecionado, por favor escolha outro diretório de doctree." 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 #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "Falha ao procurar documentos em %s: %r" msgstr "Falha ao procurar documentos em %s: %r"
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "O domínio %r ainda não está registrado" 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." msgid "self referenced toctree found. Ignored."
msgstr "toctree autorreferenciada encontrada. Ignorado." msgstr "toctree autorreferenciada encontrada. Ignorado."
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "o documento não está incluído em nenhum toctree" msgstr "o documento não está incluído em nenhum toctree"
@ -3441,23 +3441,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "referências de termo inconsistentes na mensagem traduzida. original: {0}, traduzida: {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 "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "Não foi possível determinar o texto reserva para a referência cruzada. Pode ser um 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 #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" 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" 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 #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "%s:alvo de referência %s não encontrado: %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 #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "alvo de referência %r não encontrado: %s" msgstr "alvo de referência %r não encontrado: %s"

View File

@ -9,7 +9,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Sphinx\n" "Project-Id-Version: Sphinx\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\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" "PO-Revision-Date: 2021-10-10 00:10+0000\n"
"Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n" "Last-Translator: Komiya Takeshi <i.tkomiya@gmail.com>\n"
"Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\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" msgid "Failed to create a cross reference. A title or caption not found: %s"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:75 #: sphinx/environment/__init__.py:76
msgid "new config" msgid "new config"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:76 #: sphinx/environment/__init__.py:77
msgid "config changed" msgid "config changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:77 #: sphinx/environment/__init__.py:78
msgid "extensions changed" msgid "extensions changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:204 #: sphinx/environment/__init__.py:205
msgid "build environment version not current" msgid "build environment version not current"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:206 #: sphinx/environment/__init__.py:207
msgid "source directory has changed" msgid "source directory has changed"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:285 #: sphinx/environment/__init__.py:286
msgid "" msgid ""
"This environment is incompatible with the selected builder, please choose " "This environment is incompatible with the selected builder, please choose "
"another doctree directory." "another doctree directory."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:384 #: sphinx/environment/__init__.py:385
#, python-format #, python-format
msgid "Failed to scan documents in %s: %r" msgid "Failed to scan documents in %s: %r"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:511 #: sphinx/environment/__init__.py:512
#, python-format #, python-format
msgid "Domain %r is not registered" msgid "Domain %r is not registered"
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:592 #: sphinx/environment/__init__.py:593
msgid "self referenced toctree found. Ignored." msgid "self referenced toctree found. Ignored."
msgstr "" msgstr ""
#: sphinx/environment/__init__.py:634 #: sphinx/environment/__init__.py:635
msgid "document isn't included in any toctree" msgid "document isn't included in any toctree"
msgstr "" msgstr ""
@ -3437,23 +3437,23 @@ msgid ""
"translated: {1}" "translated: {1}"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:117 #: sphinx/transforms/post_transforms/__init__.py:118
msgid "" msgid ""
"Could not determine the fallback text for the cross-reference. Might be a " "Could not determine the fallback text for the cross-reference. Might be a "
"bug." "bug."
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:157 #: sphinx/transforms/post_transforms/__init__.py:158
#, python-format #, python-format
msgid "more than one target found for 'any' cross-reference %r: could be %s" msgid "more than one target found for 'any' cross-reference %r: could be %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:205 #: sphinx/transforms/post_transforms/__init__.py:206
#, python-format #, python-format
msgid "%s:%s reference target not found: %s" msgid "%s:%s reference target not found: %s"
msgstr "" msgstr ""
#: sphinx/transforms/post_transforms/__init__.py:208 #: sphinx/transforms/post_transforms/__init__.py:209
#, python-format #, python-format
msgid "%r reference target not found: %s" msgid "%r reference target not found: %s"
msgstr "" msgstr ""

Some files were not shown because too many files have changed in this diff Show More