From 83a6a1eb13ebe5f4c51506318786e8d5f49e13d7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 30 May 2022 02:00:50 +0900 Subject: [PATCH 01/59] Close #10483: Fix type annotations for Sphinx.__init__() --- sphinx/application.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/application.py b/sphinx/application.py index ccd4bf3ac7e..f6eff7adc6f 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -129,7 +129,7 @@ class Sphinx: def __init__(self, srcdir: str, confdir: Optional[str], outdir: str, doctreedir: str, buildername: str, confoverrides: Dict = None, - status: IO = sys.stdout, warning: IO = sys.stderr, + status: Optional[IO] = sys.stdout, warning: Optional[IO] = sys.stderr, freshenv: bool = False, warningiserror: bool = False, tags: List[str] = None, verbosity: int = 0, parallel: int = 0, keep_going: bool = False) -> None: self.phase = BuildPhase.INITIALIZATION From bc57599ace268326b95249dada9275084cbed1b8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 30 May 2022 03:26:08 +0900 Subject: [PATCH 02/59] Close #9820: Use setuptools.Command if available distutils was marked as deprecated since Python 3.10 (see PEP 632). And it will be removed since Python 3.12. To follow the deprecation, this starts to use `setuptools.Command` if available. --- sphinx/setup_command.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index d654c3f0612..5e63df3a717 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -6,8 +6,6 @@ import os import sys import warnings -from distutils.cmd import Command -from distutils.errors import DistutilsExecError from io import StringIO from typing import Any, Dict @@ -18,6 +16,13 @@ from sphinx.util.docutils import docutils_namespace, patch_docutils from sphinx.util.osutil import abspath +try: + from setuptools import Command + from setuptools.errors import ExecError +except ImportError: + from distutils.cmd import Command + from distutils.errors import DistutilsExecError as ExecError + class BuildDoc(Command): """ @@ -97,7 +102,7 @@ def initialize_options(self) -> None: self.link_index = False self.copyright = '' # Link verbosity to distutils' (which uses 1 by default). - self.verbosity = self.distribution.verbose - 1 # type: ignore + self.verbosity = self.distribution.verbose - 1 self.traceback = False self.nitpicky = False self.keep_going = False @@ -125,7 +130,7 @@ def finalize_options(self) -> None: if self.build_dir is None: build = self.get_finalized_command('build') - self.build_dir = os.path.join(abspath(build.build_base), 'sphinx') # type: ignore + self.build_dir = os.path.join(abspath(build.build_base), 'sphinx') self.doctree_dir = os.path.join(self.build_dir, 'doctrees') @@ -139,7 +144,7 @@ def run(self) -> None: if not color_terminal(): nocolor() - if not self.verbose: # type: ignore + if not self.verbose: status_stream = StringIO() else: status_stream = sys.stdout # type: ignore @@ -171,8 +176,7 @@ def run(self) -> None: verbosity=self.verbosity, keep_going=self.keep_going) app.build(force_all=self.all_files) if app.statuscode: - raise DistutilsExecError( - 'caused by %s builder.' % app.builder.name) + raise ExecError('caused by %s builder.' % app.builder.name) except Exception as exc: handle_exception(app, self, exc, sys.stderr) if not self.pdb: From 41ac59ef6bababfd516929c1e68985916b4da7f5 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Mon, 30 May 2022 12:30:23 +0100 Subject: [PATCH 03/59] Spelling (language) --- sphinx/config.py | 4 ++-- tests/test_config.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/config.py b/sphinx/config.py index 15337e924d3..8c6dcfe3246 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -164,13 +164,13 @@ def read(cls, confdir: str, overrides: Dict = None, tags: Tags = None) -> "Confi confdir) namespace = eval_config_file(filename, tags) - # Note: Old sphinx projects have been configured as "langugae = None" because + # Note: Old sphinx projects have been configured as "language = None" because # sphinx-quickstart previously generated this by default. # To keep compatibility, they should be fallback to 'en' for a while # (This conversion should not be removed before 2025-01-01). if namespace.get("language", ...) is None: logger.warning(__("Invalid configuration value found: 'language = None'. " - "Update your configuration to a valid langauge code. " + "Update your configuration to a valid language code. " "Falling back to 'en' (English).")) namespace["language"] = "en" diff --git a/tests/test_config.py b/tests/test_config.py index c0b8864e00d..4dabafc8313 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -411,7 +411,7 @@ def test_conf_py_language_none_warning(logger, tempdir): assert logger.warning.called assert logger.warning.call_args[0][0] == ( "Invalid configuration value found: 'language = None'. " - "Update your configuration to a valid langauge code. " + "Update your configuration to a valid language code. " "Falling back to 'en' (English).") From de43317396f79b5c75507406a0edaff920a27f0a Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Mon, 30 May 2022 12:50:55 +0100 Subject: [PATCH 04/59] Add `aside.topic` for Docutils 0.18+ --- sphinx/themes/basic/static/basic.css_t | 6 ++++-- sphinx/themes/bizstyle/static/bizstyle.css_t | 2 +- sphinx/themes/classic/static/classic.css_t | 2 +- sphinx/themes/epub/static/epub.css_t | 2 +- sphinx/themes/nature/static/nature.css_t | 2 +- sphinx/themes/nonav/static/nonav.css | 2 +- sphinx/themes/pyramid/static/epub.css | 2 +- sphinx/themes/pyramid/static/pyramid.css_t | 2 +- sphinx/themes/sphinxdoc/static/sphinxdoc.css_t | 2 +- sphinx/themes/traditional/static/traditional.css_t | 2 +- 10 files changed, 13 insertions(+), 11 deletions(-) diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index a05c8ba0e89..9e5047afe6f 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -335,13 +335,13 @@ p.sidebar-title { font-weight: bold; } -div.admonition, div.topic, blockquote { +div.admonition, div.topic, aside.topic, blockquote { clear: left; } /* -- topics ---------------------------------------------------------------- */ -div.topic { +div.topic, aside.topic { border: 1px solid #ccc; padding: 7px; margin: 10px 0 10px 0; @@ -380,6 +380,7 @@ div.body p.centered { div.sidebar > :last-child, aside.sidebar > :last-child, div.topic > :last-child, +aside.topic > :last-child, div.admonition > :last-child { margin-bottom: 0; } @@ -387,6 +388,7 @@ div.admonition > :last-child { div.sidebar::after, aside.sidebar::after, div.topic::after, +aside.topic::after, div.admonition::after, blockquote::after { display: block; diff --git a/sphinx/themes/bizstyle/static/bizstyle.css_t b/sphinx/themes/bizstyle/static/bizstyle.css_t index 46573464679..b5c84e0bb59 100644 --- a/sphinx/themes/bizstyle/static/bizstyle.css_t +++ b/sphinx/themes/bizstyle/static/bizstyle.css_t @@ -306,7 +306,7 @@ div.quotebar { border: 1px solid #ccc; } -div.topic { +div.topic, aside.topic { background-color: #f8f8f8; } diff --git a/sphinx/themes/classic/static/classic.css_t b/sphinx/themes/classic/static/classic.css_t index 739def5cd49..58b55c8bf53 100644 --- a/sphinx/themes/classic/static/classic.css_t +++ b/sphinx/themes/classic/static/classic.css_t @@ -290,7 +290,7 @@ div.seealso { border: 1px solid #ff6; } -div.topic { +div.topic, aside.topic { background-color: #eee; } diff --git a/sphinx/themes/epub/static/epub.css_t b/sphinx/themes/epub/static/epub.css_t index 981baaab032..f7a12c0f044 100644 --- a/sphinx/themes/epub/static/epub.css_t +++ b/sphinx/themes/epub/static/epub.css_t @@ -245,7 +245,7 @@ p.sidebar-title { /* -- topics ---------------------------------------------------------------- */ -div.topic { +div.topic, aside.topic { border: 1px solid #ccc; padding: 7px 7px 0 7px; margin: 10px 0 10px 0; diff --git a/sphinx/themes/nature/static/nature.css_t b/sphinx/themes/nature/static/nature.css_t index 28a4f64c94f..f3c0d0224a6 100644 --- a/sphinx/themes/nature/static/nature.css_t +++ b/sphinx/themes/nature/static/nature.css_t @@ -194,7 +194,7 @@ div.seealso { border: 1px solid #ff6; } -div.topic { +div.topic, aside.topic { background-color: #eee; } diff --git a/sphinx/themes/nonav/static/nonav.css b/sphinx/themes/nonav/static/nonav.css index 98d2163a418..3bb152166eb 100644 --- a/sphinx/themes/nonav/static/nonav.css +++ b/sphinx/themes/nonav/static/nonav.css @@ -234,7 +234,7 @@ p.sidebar-title { /* -- topics ---------------------------------------------------------------- */ -div.topic { +div.topic, aside.topic { border: 1px solid #ccc; padding: 7px 7px 0 7px; margin: 10px 0 10px 0; diff --git a/sphinx/themes/pyramid/static/epub.css b/sphinx/themes/pyramid/static/epub.css index 165f41d5d6b..8606c8c8de0 100644 --- a/sphinx/themes/pyramid/static/epub.css +++ b/sphinx/themes/pyramid/static/epub.css @@ -254,7 +254,7 @@ div.seealso { border: 1px solid #ff6; } -div.topic { +div.topic, aside.topic { background-color: #eee; } diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index c8c05af3b19..b7fed29433f 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -245,7 +245,7 @@ div.seealso { padding: 10px 20px 10px 60px; } -div.topic { +div.topic, aside.topic { background: #eeeeee; border: 2px solid #C6C9CB; padding: 10px 20px; diff --git a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t index 1ff1d0291d8..b6de4ae6f2e 100644 --- a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t +++ b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t @@ -266,7 +266,7 @@ div.quotebar { border: 1px solid #ccc; } -div.topic { +div.topic, aside.topic { background-color: #f8f8f8; } diff --git a/sphinx/themes/traditional/static/traditional.css_t b/sphinx/themes/traditional/static/traditional.css_t index f98b337198a..b5b05dc2186 100644 --- a/sphinx/themes/traditional/static/traditional.css_t +++ b/sphinx/themes/traditional/static/traditional.css_t @@ -506,7 +506,7 @@ p.rubric { /* "Topics" */ -div.topic { +div.topic, aside.topic { background-color: #eee; border: 1px solid #ccc; padding: 0 7px 0 7px; From 6755290592176c1a4152f6aa291ffe94bb0f2b23 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Mon, 30 May 2022 12:57:35 +0100 Subject: [PATCH 05/59] Add `aside.sidebar` where it is missing --- sphinx/themes/agogo/static/agogo.css_t | 37 ++++++++++++++-------- sphinx/themes/epub/static/epub.css_t | 2 +- sphinx/themes/nonav/static/nonav.css | 2 +- sphinx/themes/pyramid/static/pyramid.css_t | 2 +- 4 files changed, 27 insertions(+), 16 deletions(-) diff --git a/sphinx/themes/agogo/static/agogo.css_t b/sphinx/themes/agogo/static/agogo.css_t index 08a4db0ccd2..14c5e52ce13 100644 --- a/sphinx/themes/agogo/static/agogo.css_t +++ b/sphinx/themes/agogo/static/agogo.css_t @@ -271,7 +271,8 @@ div.document ol { /* Sidebar */ -div.sidebar { +div.sidebar, +aside.sidebar { width: {{ theme_sidebarwidth|todim }}; {%- if theme_rightsidebar|tobool %} float: right; @@ -281,26 +282,29 @@ div.sidebar { font-size: .9em; } -div.sidebar a, div.header a { +div.sidebar a, aside.sidebar a, div.header a { text-decoration: none; } -div.sidebar a:hover, div.header a:hover { +div.sidebar a:hover, aside.sidebar a:hover, div.header a:hover { text-decoration: underline; } -div.sidebar h3 { +div.sidebar h3, +aside.sidebar h3 { color: #2e3436; text-transform: uppercase; font-size: 130%; letter-spacing: .1em; } -div.sidebar ul { +div.sidebar ul, +aside.sidebar ul { list-style-type: none; } -div.sidebar li.toctree-l1 a { +div.sidebar li.toctree-l1 a, +aside.sidebar li.toctree-l1 a { display: block; padding: 1px; border: 1px solid #dddddd; @@ -310,37 +314,44 @@ div.sidebar li.toctree-l1 a { color: #2e3436; } -div.sidebar li.toctree-l2 a { +div.sidebar li.toctree-l2 a, +aside.sidebar li.toctree-l2 a { background-color: transparent; border: none; margin-left: 1em; border-bottom: 1px solid #dddddd; } -div.sidebar li.toctree-l3 a { +div.sidebar li.toctree-l3 a, +aside.sidebar li.toctree-l3 a { background-color: transparent; border: none; margin-left: 2em; border-bottom: 1px solid #dddddd; } -div.sidebar li.toctree-l2:last-child a { +div.sidebar li.toctree-l2:last-child a, +aside.sidebar li.toctree-l2:last-child a { border-bottom: none; } -div.sidebar li.toctree-l1.current a { +div.sidebar li.toctree-l1.current a, +aside.sidebar li.toctree-l1.current a { border-right: 5px solid {{ theme_headerlinkcolor }}; } -div.sidebar li.toctree-l1.current li.toctree-l2 a { +div.sidebar li.toctree-l1.current li.toctree-l2 a, +aside.sidebar li.toctree-l1.current li.toctree-l2 a { border-right: none; } -div.sidebar input[type="text"] { +div.sidebar input[type="text"], +aside.sidebar input[type="text"] { width: 170px; } -div.sidebar input[type="submit"] { +div.sidebar input[type="submit"], +aside.sidebar input[type="submit"] { width: 30px; } diff --git a/sphinx/themes/epub/static/epub.css_t b/sphinx/themes/epub/static/epub.css_t index f7a12c0f044..bd64a1bc868 100644 --- a/sphinx/themes/epub/static/epub.css_t +++ b/sphinx/themes/epub/static/epub.css_t @@ -230,7 +230,7 @@ p.rubric { /* -- sidebars -------------------------------------------------------------- */ -div.sidebar { +div.sidebar, aside.sidebar { margin: 0 0 0.5em 1em; border: 1px solid #ddb; padding: 7px 7px 0 7px; diff --git a/sphinx/themes/nonav/static/nonav.css b/sphinx/themes/nonav/static/nonav.css index 3bb152166eb..90c3300cf03 100644 --- a/sphinx/themes/nonav/static/nonav.css +++ b/sphinx/themes/nonav/static/nonav.css @@ -219,7 +219,7 @@ p.rubric { /* -- sidebars -------------------------------------------------------------- */ -div.sidebar { +div.sidebar, aside.sidebar { margin: 0 0 0.5em 1em; border: 1px solid #ddb; padding: 7px 7px 0 7px; diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index b7fed29433f..f093ba16493 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -155,7 +155,7 @@ div.sphinxsidebar .searchformwrapper { /* -- sidebars -------------------------------------------------------------- */ -div.sidebar { +div.sidebar, aside.sidebar { margin: 0 0 0.5em 1em; border: 2px solid #c6d880; background-color: #e6efc2; From bc6571a67b9a95af23f2689d375c4517782891ae Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 31 May 2022 17:06:51 +0100 Subject: [PATCH 06/59] Add a meta node to fix iteration --- sphinx/ext/ifconfig.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index bffaa49ff7c..202bee533eb 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -20,6 +20,7 @@ from docutils.nodes import Node import sphinx +from sphinx import addnodes from sphinx.application import Sphinx from sphinx.util.docutils import SphinxDirective from sphinx.util.nodes import nested_parse_with_titles @@ -64,7 +65,7 @@ def process_ifconfig_nodes(app: Sphinx, doctree: nodes.document, docname: str) - node.replace_self(newnode) else: if not res: - node.replace_self([]) + node.replace_self(addnodes.meta()) else: node.replace_self(node.children) From d066d23067480f7ce1f02ed9c802906289413b0d Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 31 May 2022 17:12:17 +0100 Subject: [PATCH 07/59] Add a test --- tests/roots/test-ext-ifconfig/conf.py | 1 + tests/roots/test-ext-ifconfig/index.rst | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/tests/roots/test-ext-ifconfig/conf.py b/tests/roots/test-ext-ifconfig/conf.py index 565f6bcb30a..e82ec79f23f 100644 --- a/tests/roots/test-ext-ifconfig/conf.py +++ b/tests/roots/test-ext-ifconfig/conf.py @@ -7,3 +7,4 @@ def setup(app): app.add_config_value('confval1', False, None) app.add_config_value('confval2', False, None) + app.add_config_value('false_config', False, None) diff --git a/tests/roots/test-ext-ifconfig/index.rst b/tests/roots/test-ext-ifconfig/index.rst index ab08aabef96..594d885428d 100644 --- a/tests/roots/test-ext-ifconfig/index.rst +++ b/tests/roots/test-ext-ifconfig/index.rst @@ -9,3 +9,13 @@ ifconfig egg +Issue 10496 regression test +=========================== + +.. ifconfig:: false_config + + `Link 1 `__ + +.. ifconfig:: false_config + + `Link 2 `__ From 9fad9d98c2883e6781972060c28c17281274370c Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 31 May 2022 17:15:19 +0100 Subject: [PATCH 08/59] Fix fake link in test --- tests/roots/test-ext-ifconfig/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/roots/test-ext-ifconfig/index.rst b/tests/roots/test-ext-ifconfig/index.rst index 594d885428d..f7fabcc78f8 100644 --- a/tests/roots/test-ext-ifconfig/index.rst +++ b/tests/roots/test-ext-ifconfig/index.rst @@ -18,4 +18,4 @@ Issue 10496 regression test .. ifconfig:: false_config - `Link 2 `__ + `Link 2 `__ From bca9e48348706bb67ef40ec920ec554238ca0d87 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 31 May 2022 18:24:17 +0100 Subject: [PATCH 09/59] Ensure positions always sort --- sphinx/builders/gettext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 0d7d0ac11d8..0f38ea7f5ed 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -57,7 +57,7 @@ def add(self, msg: str, origin: Union[Element, "MsgOrigin"]) -> None: def __iter__(self) -> Generator[Message, None, None]: for message in self.messages: - positions = sorted(set((source, line) for source, line, uuid + positions = sorted(set((source, line or -1) for source, line, uuid in self.metadata[message])) uuids = [uuid for source, line, uuid in self.metadata[message]] yield Message(message, positions, uuids) From 34a82968597ea581b3f251aa9147a8e6e438fda3 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 31 May 2022 18:37:28 +0100 Subject: [PATCH 10/59] Add a warning --- sphinx/builders/gettext.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 0f38ea7f5ed..4aa3cf5d433 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -53,11 +53,15 @@ def add(self, msg: str, origin: Union[Element, "MsgOrigin"]) -> None: if msg not in self.metadata: # faster lookup in hash self.messages.append(msg) self.metadata[msg] = [] - self.metadata[msg].append((origin.source, origin.line, origin.uid)) # type: ignore + line = origin.line + if line is None: + logger.warning(f"Node {origin!r} has no line number, using '-1'.") + line = -1 + self.metadata[msg].append((origin.source, line, origin.uid)) # type: ignore def __iter__(self) -> Generator[Message, None, None]: for message in self.messages: - positions = sorted(set((source, line or -1) for source, line, uuid + positions = sorted(set((source, line) for source, line, uuid in self.metadata[message])) uuids = [uuid for source, line, uuid in self.metadata[message]] yield Message(message, positions, uuids) From 04b84e82a019b12d79519082d79e6636238b31a7 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 00:31:12 +0100 Subject: [PATCH 11/59] Fix `findall` usage in KeyboardTransform --- sphinx/builders/html/transforms.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index ea596cb4b22..7f96c4e60ec 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -40,7 +40,10 @@ class KeyboardTransform(SphinxPostTransform): def run(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.literal, classes=["kbd"]) - for node in self.document.findall(matcher): # type: nodes.literal + # this list must be pre-created as during iteration new nodes + # are added which match the condition in the NodeMatcher. + nodes_to_expand = list(self.document.findall(matcher)) + for node in nodes_to_expand: # type: nodes.literal parts = self.pattern.split(node[-1].astext()) if len(parts) == 1 or self.is_multiwords_key(parts): continue @@ -61,6 +64,7 @@ def run(self, **kwargs: Any) -> None: node += nodes.Text(sep) except IndexError: pass + _a = 1 def is_multiwords_key(self, parts: List[str]) -> bool: if len(parts) >= 3 and parts[1].strip() == '': From 23a4b614157b3e69d4f43075dc6cacd05fecf3b9 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 00:35:28 +0100 Subject: [PATCH 12/59] Add a test --- .../test-transforms-post_transforms-keyboard/conf.py | 0 .../test-transforms-post_transforms-keyboard/index.rst | 4 ++++ tests/test_transforms_post_transforms.py | 8 ++++++++ 3 files changed, 12 insertions(+) create mode 100644 tests/roots/test-transforms-post_transforms-keyboard/conf.py create mode 100644 tests/roots/test-transforms-post_transforms-keyboard/index.rst diff --git a/tests/roots/test-transforms-post_transforms-keyboard/conf.py b/tests/roots/test-transforms-post_transforms-keyboard/conf.py new file mode 100644 index 00000000000..e69de29bb2d diff --git a/tests/roots/test-transforms-post_transforms-keyboard/index.rst b/tests/roots/test-transforms-post_transforms-keyboard/index.rst new file mode 100644 index 00000000000..76c5c584ea3 --- /dev/null +++ b/tests/roots/test-transforms-post_transforms-keyboard/index.rst @@ -0,0 +1,4 @@ +Regression test for issue 10495 +=============================== + +:kbd:`test - test` diff --git a/tests/test_transforms_post_transforms.py b/tests/test_transforms_post_transforms.py index 272d83e3a02..73cd66758a0 100644 --- a/tests/test_transforms_post_transforms.py +++ b/tests/test_transforms_post_transforms.py @@ -48,3 +48,11 @@ def missing_reference(app, env, node, contnode): content = (app.outdir / 'index.html').read_text(encoding='utf8') assert 'Age' in content + + +@pytest.mark.sphinx('html', testroot='transforms-post_transforms-keyboard', + freshenv=True) +def test_keyboard_issue_10495(app): + """Regression test for issue 10495, we want no crash.""" + app.build() + assert "blah" in (app.outdir / 'index.html').read_text(encoding='utf8') From 244ab1c015ff869fbe0757d5cb872c5bf9a2d656 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 00:38:55 +0100 Subject: [PATCH 13/59] Add annotation --- sphinx/builders/html/transforms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index 7f96c4e60ec..a2944c017d2 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -42,7 +42,7 @@ def run(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.literal, classes=["kbd"]) # this list must be pre-created as during iteration new nodes # are added which match the condition in the NodeMatcher. - nodes_to_expand = list(self.document.findall(matcher)) + nodes_to_expand: List[nodes.literal] = list(self.document.findall(matcher)) for node in nodes_to_expand: # type: nodes.literal parts = self.pattern.split(node[-1].astext()) if len(parts) == 1 or self.is_multiwords_key(parts): From 6aa2d05111168ea93a82719b3fa99fd203924bb2 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 00:39:35 +0100 Subject: [PATCH 14/59] Remove temp variable --- sphinx/builders/html/transforms.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index a2944c017d2..940b0c0d8e2 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -64,7 +64,6 @@ def run(self, **kwargs: Any) -> None: node += nodes.Text(sep) except IndexError: pass - _a = 1 def is_multiwords_key(self, parts: List[str]) -> bool: if len(parts) >= 3 and parts[1].strip() == '': From 91f90a5fb5c7c4e412d966582266f20bbadd46d2 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 00:50:41 +0100 Subject: [PATCH 15/59] Fix test --- tests/roots/test-transforms-post_transforms-keyboard/index.rst | 2 +- tests/test_transforms_post_transforms.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/roots/test-transforms-post_transforms-keyboard/index.rst b/tests/roots/test-transforms-post_transforms-keyboard/index.rst index 76c5c584ea3..21775782f64 100644 --- a/tests/roots/test-transforms-post_transforms-keyboard/index.rst +++ b/tests/roots/test-transforms-post_transforms-keyboard/index.rst @@ -1,4 +1,4 @@ Regression test for issue 10495 =============================== -:kbd:`test - test` +:kbd:`spanish - inquisition` diff --git a/tests/test_transforms_post_transforms.py b/tests/test_transforms_post_transforms.py index 73cd66758a0..ebd50577637 100644 --- a/tests/test_transforms_post_transforms.py +++ b/tests/test_transforms_post_transforms.py @@ -55,4 +55,5 @@ def missing_reference(app, env, node, contnode): def test_keyboard_issue_10495(app): """Regression test for issue 10495, we want no crash.""" app.build() - assert "blah" in (app.outdir / 'index.html').read_text(encoding='utf8') + assert "spanish" in (app.outdir / 'index.html').read_text(encoding='utf8') + assert "inquisition" in (app.outdir / 'index.html').read_text(encoding='utf8') From efdbe06eea67cba57532160a1eb80aaac2241d50 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 18:10:55 +0100 Subject: [PATCH 16/59] Review comments --- sphinx/builders/html/transforms.py | 3 +-- tests/test_transforms_post_transforms.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/sphinx/builders/html/transforms.py b/sphinx/builders/html/transforms.py index 940b0c0d8e2..1ba6ba85743 100644 --- a/sphinx/builders/html/transforms.py +++ b/sphinx/builders/html/transforms.py @@ -42,8 +42,7 @@ def run(self, **kwargs: Any) -> None: matcher = NodeMatcher(nodes.literal, classes=["kbd"]) # this list must be pre-created as during iteration new nodes # are added which match the condition in the NodeMatcher. - nodes_to_expand: List[nodes.literal] = list(self.document.findall(matcher)) - for node in nodes_to_expand: # type: nodes.literal + for node in list(self.document.findall(matcher)): # type: nodes.literal parts = self.pattern.split(node[-1].astext()) if len(parts) == 1 or self.is_multiwords_key(parts): continue diff --git a/tests/test_transforms_post_transforms.py b/tests/test_transforms_post_transforms.py index ebd50577637..215e6d14fe2 100644 --- a/tests/test_transforms_post_transforms.py +++ b/tests/test_transforms_post_transforms.py @@ -52,7 +52,7 @@ def missing_reference(app, env, node, contnode): @pytest.mark.sphinx('html', testroot='transforms-post_transforms-keyboard', freshenv=True) -def test_keyboard_issue_10495(app): +def test_keyboard_hyphen_spaces(app): """Regression test for issue 10495, we want no crash.""" app.build() assert "spanish" in (app.outdir / 'index.html').read_text(encoding='utf8') From a1ecf99b9fb75bfb74d891716958666d497bd153 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 1 Jun 2022 18:45:48 +0100 Subject: [PATCH 17/59] Remove warning --- sphinx/builders/gettext.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 4aa3cf5d433..92edcc9f2dd 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -55,7 +55,6 @@ def add(self, msg: str, origin: Union[Element, "MsgOrigin"]) -> None: self.metadata[msg] = [] line = origin.line if line is None: - logger.warning(f"Node {origin!r} has no line number, using '-1'.") line = -1 self.metadata[msg].append((origin.source, line, origin.uid)) # type: ignore From d6d2a403450e022f5b91323a367fdc5539f7c525 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 2 Jun 2022 02:56:59 +0900 Subject: [PATCH 18/59] Update CHANGES for PR #10503 --- CHANGES | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index d962f8f89e5..dd8e82f1ec4 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Features added Bugs fixed ---------- +* #10498: gettext: TypeError is raised when sorting warning messages if a node + has no line number + Testing -------- From 28f9ce78b0074c70a3b849c7f9eb7a4dabf6bece Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 01:05:41 +0900 Subject: [PATCH 19/59] Update CHANGES for PR #10493 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index dd8e82f1ec4..8c0e3af6acf 100644 --- a/CHANGES +++ b/CHANGES @@ -18,6 +18,8 @@ Bugs fixed * #10498: gettext: TypeError is raised when sorting warning messages if a node has no line number +* #10493: html theme: :rst:dir:`topic` directive is rendered incorrectly with + docutils-0.18 Testing -------- From 2a50b2e5a3b76d708dfb61d46bd78847353189a7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 01:22:16 +0900 Subject: [PATCH 20/59] Update CHANGES for PR #10504 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 8c0e3af6acf..0e8a504b1eb 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed has no line number * #10493: html theme: :rst:dir:`topic` directive is rendered incorrectly with docutils-0.18 +* #10495: IndexError is raised for a :rst:role:`kbd` role having a separator Testing -------- From c4458e3adbcffced2248fb3d05a283e1754d3b7c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 02:01:01 +0900 Subject: [PATCH 21/59] ifconfig: Do not use a meta node for noop --- sphinx/ext/ifconfig.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index 202bee533eb..f0d11507776 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -20,7 +20,6 @@ from docutils.nodes import Node import sphinx -from sphinx import addnodes from sphinx.application import Sphinx from sphinx.util.docutils import SphinxDirective from sphinx.util.nodes import nested_parse_with_titles @@ -52,7 +51,7 @@ def process_ifconfig_nodes(app: Sphinx, doctree: nodes.document, docname: str) - ns = {confval.name: confval.value for confval in app.config} ns.update(app.config.__dict__.copy()) ns['builder'] = app.builder.name - for node in doctree.findall(ifconfig): + for node in list(doctree.findall(ifconfig)): try: res = eval(node['expr'], ns) except Exception as err: @@ -65,7 +64,7 @@ def process_ifconfig_nodes(app: Sphinx, doctree: nodes.document, docname: str) - node.replace_self(newnode) else: if not res: - node.replace_self(addnodes.meta()) + node.replace_self([]) else: node.replace_self(node.children) From ce345a2f28f46e75e493ce5c35e7f991437f817d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 02:29:39 +0900 Subject: [PATCH 22/59] Fix #10509: autosummary: autosummary fails with a shared library --- CHANGES | 1 + sphinx/ext/autosummary/generate.py | 8 ++++++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 0e8a504b1eb..760990e8311 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,7 @@ Features added Bugs fixed ---------- +* #10509: autosummary: autosummary fails with a shared library * #10498: gettext: TypeError is raised when sorting warning messages if a node has no line number * #10493: html theme: :rst:dir:`topic` directive is rendered incorrectly with diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 5ef7b0352fd..3db7eb989a1 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -155,8 +155,12 @@ def is_skipped(self, name: str, value: Any, objtype: str) -> bool: def scan(self, imported_members: bool) -> List[str]: members = [] - analyzer = ModuleAnalyzer.for_module(self.object.__name__) - attr_docs = analyzer.find_attr_docs() + try: + analyzer = ModuleAnalyzer.for_module(self.object.__name__) + attr_docs = analyzer.find_attr_docs() + except PycodeError: + attr_docs = {} + for name in members_of(self.object, self.app.config): try: value = safe_getattr(self.object, name) From 3a0232807a769e43b3a85ce23b939d15cda477d9 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 19:10:11 +0100 Subject: [PATCH 23/59] Fix ~Literal references --- sphinx/domains/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index a634a51d2b2..fd43b15b262 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -396,7 +396,7 @@ def make_xrefs(self, rolename: str, domain: str, target: str, results.append(self.make_xref(rolename, domain, sub_target, innernode, contnode, env, inliner, location)) - if sub_target in ('Literal', 'typing.Literal'): + if sub_target in ('Literal', 'typing.Literal', '~typing.Literal'): in_literal = True return results From 8fe27991ba23268b17fad2e2fe2548074ad6cf26 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 03:12:06 +0900 Subject: [PATCH 24/59] Bump to 5.0.1 final --- CHANGES | 19 ++----------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/CHANGES b/CHANGES index 0e8a504b1eb..d9fe18baff1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,17 +1,5 @@ -Release 5.0.1 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 5.0.1 (released Jun 03, 2022) +===================================== Bugs fixed ---------- @@ -22,9 +10,6 @@ Bugs fixed docutils-0.18 * #10495: IndexError is raised for a :rst:role:`kbd` role having a separator -Testing --------- - Release 5.0.0 (released May 30, 2022) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index e947380bd70..363821209a2 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,7 +21,7 @@ warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '5.0.1+' +__version__ = '5.0.1' __released__ = '5.0.1' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -32,7 +32,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 0, 1, 'beta', 0) +version_info = (5, 0, 1, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From f5eb5ca597f50a22d3ca7492b907feb615d058c0 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 03:13:49 +0900 Subject: [PATCH 25/59] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index d9fe18baff1..cb8f9ddc9a5 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 5.0.2 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 5.0.1 (released Jun 03, 2022) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 363821209a2..113dc8bfe89 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '5.0.1' -__released__ = '5.0.1' # used when Sphinx builds its own docs +__version__ = '5.0.2+' +__released__ = '5.0.2' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -32,7 +32,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 0, 1, 'final', 0) +version_info = (5, 0, 2, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From 1e30b8cd4d7a0433e59aec0e2d7fd876bf452076 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 3 Jun 2022 02:29:39 +0900 Subject: [PATCH 26/59] Fix #10509: autosummary: autosummary fails with a shared library --- CHANGES | 2 ++ sphinx/ext/autosummary/generate.py | 8 ++++++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index cb8f9ddc9a5..ca68c54703c 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #10509: autosummary: autosummary fails with a shared library + Testing -------- diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 5ef7b0352fd..3db7eb989a1 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -155,8 +155,12 @@ def is_skipped(self, name: str, value: Any, objtype: str) -> bool: def scan(self, imported_members: bool) -> List[str]: members = [] - analyzer = ModuleAnalyzer.for_module(self.object.__name__) - attr_docs = analyzer.find_attr_docs() + try: + analyzer = ModuleAnalyzer.for_module(self.object.__name__) + attr_docs = analyzer.find_attr_docs() + except PycodeError: + attr_docs = {} + for name in members_of(self.object, self.app.config): try: value = safe_getattr(self.object, name) From bd2957e3041e05713887fa4f8bc6f42fd58067c5 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 20:37:22 +0100 Subject: [PATCH 27/59] Remove old badges --- README.rst | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/README.rst b/README.rst index c60e58780be..97eaf4dd267 100644 --- a/README.rst +++ b/README.rst @@ -10,26 +10,10 @@ :target: http://www.sphinx-doc.org/ :alt: Documentation Status -.. image:: https://ci.appveyor.com/api/projects/status/github/sphinx-doc/sphinx?branch=master&svg=true - :target: https://ci.appveyor.com/project/sphinxdoc/sphinx - :alt: Build Status (AppVeyor) - -.. image:: https://circleci.com/gh/sphinx-doc/sphinx.svg?style=shield - :target: https://circleci.com/gh/sphinx-doc/sphinx - :alt: Build Status (CircleCI) - -.. image:: https://codecov.io/gh/sphinx-doc/sphinx/branch/master/graph/badge.svg - :target: https://codecov.io/gh/sphinx-doc/sphinx - :alt: Code Coverage Status (Codecov) - .. image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg :target: https://opensource.org/licenses/BSD-3-Clause :alt: BSD 3 Clause -.. image:: https://codetriage.com/sphinx-doc/sphinx/badges/users.svg - :target: https://codetriage.com/sphinx-doc/sphinx - :alt: Open Source Helpers badge - Sphinx is a tool that makes it easy to create intelligent and beautiful documentation for Python projects (or other documents consisting of multiple reStructuredText sources), written by Georg Brandl. It was originally created From 86a218ae8d60672cde482813d056e475fbcc109d Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 20:37:39 +0100 Subject: [PATCH 28/59] Add GitHub actions badge --- README.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.rst b/README.rst index 97eaf4dd267..bc72531afd7 100644 --- a/README.rst +++ b/README.rst @@ -10,6 +10,10 @@ :target: http://www.sphinx-doc.org/ :alt: Documentation Status +.. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg + :target: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml + :alt: Build Status + .. image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg :target: https://opensource.org/licenses/BSD-3-Clause :alt: BSD 3 Clause From ec8c2e3c3e584a153ab4b595db3f76add825eb0e Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 22:38:35 +0100 Subject: [PATCH 29/59] Reorganise links --- README.rst | 51 +++++++++++++++++++-------------------------------- 1 file changed, 19 insertions(+), 32 deletions(-) diff --git a/README.rst b/README.rst index bc72531afd7..88f2f41b343 100644 --- a/README.rst +++ b/README.rst @@ -7,7 +7,7 @@ :alt: Package on PyPI .. image:: https://readthedocs.org/projects/sphinx/badge/?version=master - :target: http://www.sphinx-doc.org/ + :target: https://www.sphinx-doc.org/ :alt: Documentation Status .. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg @@ -45,14 +45,12 @@ Among its features are the following: and inclusion of appropriately formatted docstrings * Setuptools integration -For more information, refer to the `the documentation`__. - -.. __: http://www.sphinx-doc.org/ +For more information, refer to the `the documentation`_. Installation ============ -Sphinx is published on `PyPI`__ and can be installed from there:: +Sphinx is published on `PyPI`_ and can be installed from there:: pip install -U sphinx @@ -60,18 +58,13 @@ We also publish beta releases:: pip install -U --pre sphinx -If you wish to install `Sphinx` for development purposes, refer to `the -contributors guide`__. - -__ https://pypi.org/project/Sphinx/ -__ http://www.sphinx-doc.org/en/master/internals/contributing.html +If you wish to install Sphinx for development purposes, refer to +`the contributors guide`_. Documentation ============= -Documentation is available from `sphinx-doc.org`__. - -__ http://www.sphinx-doc.org/ +Documentation is available from `sphinx-doc.org`_. Get in touch ============ @@ -79,33 +72,18 @@ Get in touch - Report bugs, suggest features or view the source code `on GitHub`_. - For less well defined questions or ideas, use the `mailing list`_. -.. _on GitHub: https://github.com/sphinx-doc/sphinx -.. _mailing list: https://groups.google.com/forum/#!forum/sphinx-users - -Please adhere to our `code of conduct`__. - -__ http://www.sphinx-doc.org/en/master/code_of_conduct.html +Please adhere to our `code of conduct`_. Testing ======= -Continuous testing is provided by `Travis`__ (for unit tests and style checks -on Linux), `AppVeyor`__ (for unit tests on Windows), and `CircleCI`__ (for -large processes like TeX compilation). - -For information on running tests locally, refer to `the contributors guide`__. - -__ https://travis-ci.org/sphinx-doc/sphinx -__ https://ci.appveyor.com/project/sphinxdoc/sphinx -__ https://circleci.com/gh/sphinx-doc/sphinx -__ http://www.sphinx-doc.org/en/master/internals/contributing.html +Continuous testing is provided by `GitHub Actions`_. +For information on running tests locally, refer to `the contributors guide`_. Contributing ============ -Refer to `the contributors guide`__. - -__ http://www.sphinx-doc.org/en/master/internals/contributing.html +Refer to `the contributors guide`_. Release signatures ================== @@ -114,3 +92,12 @@ Releases are signed with following keys: * `498D6B9E `_ * `5EBA0E07 `_ + +.. _the documentation: +.. _sphinx-doc.org: https://www.sphinx-doc.org/ +.. _code of conduct: https://www.sphinx-doc.org/en/master/code_of_conduct.html +.. _the contributors guide: https://www.sphinx-doc.org/en/master/internals/contributing.html +.. _on GitHub: https://github.com/sphinx-doc/sphinx +.. _GitHub Actions: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml +.. _mailing list: https://groups.google.com/forum/#!forum/sphinx-users +.. _PyPI: https://pypi.org/project/Sphinx/ From a3139a5e2b89bd496dda02de67ea74859b2a58a2 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 23:26:01 +0100 Subject: [PATCH 30/59] Reorganise badges --- README.rst | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/README.rst b/README.rst index 88f2f41b343..301c2dbed07 100644 --- a/README.rst +++ b/README.rst @@ -2,6 +2,10 @@ Sphinx ======== +.. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg + :target: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml + :alt: Build Status + .. image:: https://img.shields.io/pypi/v/sphinx.svg :target: https://pypi.org/project/Sphinx/ :alt: Package on PyPI @@ -10,13 +14,13 @@ :target: https://www.sphinx-doc.org/ :alt: Documentation Status -.. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg - :target: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml - :alt: Build Status +.. image:: https://img.shields.io/badge/License-BSD%202--Clause-blue.svg + :target: https://opensource.org/licenses/BSD-2-Clause + :alt: BSD 2 Clause -.. image:: https://img.shields.io/badge/License-BSD%203--Clause-blue.svg - :target: https://opensource.org/licenses/BSD-3-Clause - :alt: BSD 3 Clause +.. image:: https://img.shields.io/pypi/dm/Sphinx?label=PyPI%20Installs + :target: https://pypistats.org/packages/sphinx + :alt: Monthly PyPI installs Sphinx is a tool that makes it easy to create intelligent and beautiful documentation for Python projects (or other documents consisting of multiple From 7a7c811ed2b83884a73d6933b0ff66dd8f6daf24 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 23:29:58 +0100 Subject: [PATCH 31/59] Condense into a single "Contributing" section --- README.rst | 26 ++------------------------ 1 file changed, 2 insertions(+), 24 deletions(-) diff --git a/README.rst b/README.rst index 301c2dbed07..27ecb3ed859 100644 --- a/README.rst +++ b/README.rst @@ -65,29 +65,11 @@ We also publish beta releases:: If you wish to install Sphinx for development purposes, refer to `the contributors guide`_. -Documentation -============= - -Documentation is available from `sphinx-doc.org`_. - -Get in touch -============ - -- Report bugs, suggest features or view the source code `on GitHub`_. -- For less well defined questions or ideas, use the `mailing list`_. - -Please adhere to our `code of conduct`_. - -Testing -======= - -Continuous testing is provided by `GitHub Actions`_. -For information on running tests locally, refer to `the contributors guide`_. - Contributing ============ -Refer to `the contributors guide`_. +We appreciate all contributions! Refer to `the contributors guide`_ for +information. Release signatures ================== @@ -99,9 +81,5 @@ Releases are signed with following keys: .. _the documentation: .. _sphinx-doc.org: https://www.sphinx-doc.org/ -.. _code of conduct: https://www.sphinx-doc.org/en/master/code_of_conduct.html .. _the contributors guide: https://www.sphinx-doc.org/en/master/internals/contributing.html -.. _on GitHub: https://github.com/sphinx-doc/sphinx -.. _GitHub Actions: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml -.. _mailing list: https://groups.google.com/forum/#!forum/sphinx-users .. _PyPI: https://pypi.org/project/Sphinx/ From 54acdc613cac38f074087846a189d48d1700a8c6 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Thu, 2 Jun 2022 23:38:25 +0100 Subject: [PATCH 32/59] Simplify the Installation section --- README.rst | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.rst b/README.rst index 27ecb3ed859..7b9f0049bec 100644 --- a/README.rst +++ b/README.rst @@ -54,16 +54,12 @@ For more information, refer to the `the documentation`_. Installation ============ -Sphinx is published on `PyPI`_ and can be installed from there:: +The following command installs Sphinx from the `Python Package Index`_. You will +need a working installation of Python and pip. - pip install -U sphinx - -We also publish beta releases:: +.. code-block:: sh - pip install -U --pre sphinx - -If you wish to install Sphinx for development purposes, refer to -`the contributors guide`_. + pip install -U sphinx Contributing ============ @@ -79,7 +75,6 @@ Releases are signed with following keys: * `498D6B9E `_ * `5EBA0E07 `_ -.. _the documentation: -.. _sphinx-doc.org: https://www.sphinx-doc.org/ +.. _the documentation: https://www.sphinx-doc.org/ .. _the contributors guide: https://www.sphinx-doc.org/en/master/internals/contributing.html -.. _PyPI: https://pypi.org/project/Sphinx/ +.. _Python Package Index: https://pypi.org/project/Sphinx/ From a74755dbc761858e9378aaf8ed04b2f050690491 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Fri, 3 Jun 2022 00:12:17 +0100 Subject: [PATCH 33/59] Reformat the introduction and features list --- README.rst | 31 +++++++++++++------------------ 1 file changed, 13 insertions(+), 18 deletions(-) diff --git a/README.rst b/README.rst index 7b9f0049bec..a29aa503861 100644 --- a/README.rst +++ b/README.rst @@ -22,32 +22,27 @@ :target: https://pypistats.org/packages/sphinx :alt: Monthly PyPI installs -Sphinx is a tool that makes it easy to create intelligent and beautiful -documentation for Python projects (or other documents consisting of multiple -reStructuredText sources), written by Georg Brandl. It was originally created -for the new Python documentation, and has excellent facilities for Python -project documentation, but C/C++ is supported as well, and more languages are -planned. +**Sphinx makes it easy to create intelligent and beautiful documentation.** Sphinx uses reStructuredText as its markup language, and many of its strengths come from the power and straightforwardness of reStructuredText and its parsing and translating suite, the Docutils. -Among its features are the following: +Features +======== -* Output formats: HTML (including derivative formats such as HTML Help, Epub - and Qt Help), plain text, manual pages and LaTeX or direct PDF output - using rst2pdf -* Extensive cross-references: semantic markup and automatic links +* **Output formats**: HTML, PDF, plain text, EPub, TeX, manual pages, and more +* **Extensive cross-references**: semantic markup and automatic links for functions, classes, glossary terms and similar pieces of information -* Hierarchical structure: easy definition of a document tree, with automatic +* **Hierarchical structure**: easy definition of a document tree, with automatic links to siblings, parents and children -* Automatic indices: general index as well as a module index -* Code handling: automatic highlighting using the Pygments highlighter -* Flexible HTML output using the Jinja 2 templating engine -* Various extensions are available, e.g. for automatic testing of snippets - and inclusion of appropriately formatted docstrings -* Setuptools integration +* **Automatic indices**: general index as well as a module index +* **Code highlighting**: automatic highlighting using the Pygments highlighter +* **Templating**: Flexible HTML output using the Jinja 2 templating engine +* **Extension ecosystem**: Many extensions are available, for example for + automatic function documentation or working with Jupyter notebooks. +* **Language Support**: Python, C, C++, JavaScript, mathematics, and many other + languages through extensions. For more information, refer to the `the documentation`_. From 3b760d393e6d047e760c530a2bb10140c7619ffd Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Fri, 3 Jun 2022 00:22:00 +0100 Subject: [PATCH 34/59] Move release badge first, remove download stats --- README.rst | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index a29aa503861..ac51e489190 100644 --- a/README.rst +++ b/README.rst @@ -2,14 +2,14 @@ Sphinx ======== -.. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg - :target: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml - :alt: Build Status - .. image:: https://img.shields.io/pypi/v/sphinx.svg :target: https://pypi.org/project/Sphinx/ :alt: Package on PyPI +.. image:: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml/badge.svg + :target: https://github.com/sphinx-doc/sphinx/actions/workflows/main.yml + :alt: Build Status + .. image:: https://readthedocs.org/projects/sphinx/badge/?version=master :target: https://www.sphinx-doc.org/ :alt: Documentation Status @@ -18,10 +18,6 @@ :target: https://opensource.org/licenses/BSD-2-Clause :alt: BSD 2 Clause -.. image:: https://img.shields.io/pypi/dm/Sphinx?label=PyPI%20Installs - :target: https://pypistats.org/packages/sphinx - :alt: Monthly PyPI installs - **Sphinx makes it easy to create intelligent and beautiful documentation.** Sphinx uses reStructuredText as its markup language, and many of its strengths From 0bf661857db123bb30ec079de4bcac61bed58edd Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Sun, 9 Jan 2022 16:44:07 +0000 Subject: [PATCH 35/59] simplify dict key checks (SIM118) --- sphinx/domains/c.py | 2 +- sphinx/domains/cpp.py | 2 +- sphinx/util/cfamily.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index ea29b94b7b3..75581d71aa3 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -2531,7 +2531,7 @@ def _parse_expression_fallback( while not self.eof: if (len(symbols) == 0 and self.current_char in end): break - if self.current_char in brackets.keys(): + if self.current_char in brackets: symbols.append(brackets[self.current_char]) elif len(symbols) > 0 and self.current_char == symbols[-1]: symbols.pop() diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 98a89594f27..980c4db5c02 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -5754,7 +5754,7 @@ def _parse_expression_fallback(self, end: List[str], while not self.eof: if (len(symbols) == 0 and self.current_char in end): break - if self.current_char in brackets.keys(): + if self.current_char in brackets: symbols.append(brackets[self.current_char]) elif len(symbols) > 0 and self.current_char == symbols[-1]: symbols.pop() diff --git a/sphinx/util/cfamily.py b/sphinx/util/cfamily.py index 2dbb020048a..21ac9b79f52 100644 --- a/sphinx/util/cfamily.py +++ b/sphinx/util/cfamily.py @@ -379,7 +379,7 @@ def _parse_balanced_token_seq(self, end: List[str]) -> str: while not self.eof: if len(symbols) == 0 and self.current_char in end: break - if self.current_char in brackets.keys(): + if self.current_char in brackets: symbols.append(brackets[self.current_char]) elif len(symbols) > 0 and self.current_char == symbols[-1]: symbols.pop() From 9e051dfb3467919459eb4e6fe30da2c6077aa950 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Sun, 9 Jan 2022 16:50:10 +0000 Subject: [PATCH 36/59] remove unnecessary list calls within 'sorted' (C414) --- sphinx/builders/html/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index b320b0df588..6ba92eb3e70 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -1055,7 +1055,7 @@ def hasdoc(name: str) -> bool: # sort JS/CSS before rendering HTML try: # Convert script_files to list to support non-list script_files (refs: #8889) - ctx['script_files'] = sorted(list(ctx['script_files']), key=lambda js: js.priority) + ctx['script_files'] = sorted(ctx['script_files'], key=lambda js: js.priority) except AttributeError: # Skip sorting if users modifies script_files directly (maybe via `html_context`). # refs: #8885 @@ -1064,7 +1064,7 @@ def hasdoc(name: str) -> bool: pass try: - ctx['css_files'] = sorted(list(ctx['css_files']), key=lambda css: css.priority) + ctx['css_files'] = sorted(ctx['css_files'], key=lambda css: css.priority) except AttributeError: pass From 55a0143df790e65514faaec4c79cfbec103a2a35 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Sun, 9 Jan 2022 16:52:03 +0000 Subject: [PATCH 37/59] remove unnecessary list calls around 'sorted' (C413) --- sphinx/ext/autosummary/generate.py | 2 +- tests/test_domain_cpp.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 3db7eb989a1..5d5e64b927a 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -355,7 +355,7 @@ def generate_autosummary_docs(sources: List[str], output_dir: str = None, suffix: str = '.rst', base_path: str = None, imported_members: bool = False, app: Any = None, overwrite: bool = True, encoding: str = 'utf-8') -> None: - showed_sources = list(sorted(sources)) + showed_sources = sorted(sources) if len(showed_sources) > 20: showed_sources = showed_sources[:10] + ['...'] + showed_sources[-10:] logger.info(__('[autosummary] generating autosummary for: %s') % diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 70876728df1..765f9fd650b 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -1113,11 +1113,11 @@ def test_domain_cpp_build_misuse_of_roles(app, status, warning): if targetType == 'templateParam': warn.append("WARNING: cpp:{} targets a {} (".format(r, txtTargetType)) warn.append("WARNING: cpp:{} targets a {} (".format(r, txtTargetType)) - warn = list(sorted(warn)) + warn = sorted(warn) for w in ws: assert "targets a" in w ws = [w[w.index("WARNING:"):] for w in ws] - ws = list(sorted(ws)) + ws = sorted(ws) print("Expected warnings:") for w in warn: print(w) From 89210fc2756eaf0fc1bbcf3eccb7a9f9f690b820 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Sun, 9 Jan 2022 16:55:12 +0000 Subject: [PATCH 38/59] remove unnecessary list comprehension (C416) --- tests/test_ext_napoleon_iterators.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/test_ext_napoleon_iterators.py b/tests/test_ext_napoleon_iterators.py index 6b80af6bf68..f5fe541b678 100644 --- a/tests/test_ext_napoleon_iterators.py +++ b/tests/test_ext_napoleon_iterators.py @@ -55,19 +55,19 @@ def test_iter(self): self.assertTrue(it is it.__iter__()) a = [] - b = [i for i in peek_iter(a)] + b = list(peek_iter(a)) self.assertEqual([], b) a = ['1'] - b = [i for i in peek_iter(a)] + b = list(peek_iter(a)) self.assertEqual(['1'], b) a = ['1', '2'] - b = [i for i in peek_iter(a)] + b = list(peek_iter(a)) self.assertEqual(['1', '2'], b) a = ['1', '2', '3'] - b = [i for i in peek_iter(a)] + b = list(peek_iter(a)) self.assertEqual(['1', '2', '3'], b) def test_next_with_multi(self): @@ -303,7 +303,7 @@ def get_next(): return next(a) it = modify_iter(get_next, sentinel, int) expected = [1, 2, 3] - self.assertEqual(expected, [i for i in it]) + self.assertEqual(expected, list(it)) def test_init_with_sentinel_kwargs(self): a = iter([1, 2, 3, 4]) @@ -313,13 +313,13 @@ def get_next(): return next(a) it = modify_iter(get_next, sentinel, modifier=str) expected = ['1', '2', '3'] - self.assertEqual(expected, [i for i in it]) + self.assertEqual(expected, list(it)) def test_modifier_default(self): a = ['', ' ', ' a ', 'b ', ' c', ' ', ''] it = modify_iter(a) expected = ['', ' ', ' a ', 'b ', ' c', ' ', ''] - self.assertEqual(expected, [i for i in it]) + self.assertEqual(expected, list(it)) def test_modifier_not_callable(self): self.assertRaises(TypeError, modify_iter, [1], modifier='not_callable') @@ -328,10 +328,10 @@ def test_modifier_rstrip(self): a = ['', ' ', ' a ', 'b ', ' c', ' ', ''] it = modify_iter(a, modifier=lambda s: s.rstrip()) expected = ['', '', ' a', 'b', ' c', '', ''] - self.assertEqual(expected, [i for i in it]) + self.assertEqual(expected, list(it)) def test_modifier_rstrip_unicode(self): a = ['', ' ', ' a ', 'b ', ' c', ' ', ''] it = modify_iter(a, modifier=lambda s: s.rstrip()) expected = ['', '', ' a', 'b', ' c', '', ''] - self.assertEqual(expected, [i for i in it]) + self.assertEqual(expected, list(it)) From 4e4813099bffde35b0c1d3f12eeac85420ad447b Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Sun, 9 Jan 2022 16:58:49 +0000 Subject: [PATCH 39/59] remove unnecessary generators (C400, C401) --- sphinx/ext/autosummary/__init__.py | 2 +- sphinx/ext/autosummary/generate.py | 4 ++-- sphinx/ext/napoleon/docstring.py | 4 ++-- sphinx/util/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index fbf62c3cd6e..2b9055d3e82 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -315,7 +315,7 @@ def get_items(self, names: List[str]) -> List[Tuple[str, str, str, str]]: try: real_name, obj, parent, modname = self.import_by_name(name, prefixes=prefixes) except ImportExceptionGroup as exc: - errors = list(set("* %s: %s" % (type(e).__name__, e) for e in exc.exceptions)) + errors = list({"* %s: %s" % (type(e).__name__, e) for e in exc.exceptions}) logger.warning(__('autosummary: failed to import %s.\nPossible hints:\n%s'), name, '\n'.join(errors), location=self.get_location()) continue diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 5d5e64b927a..0e1daf79a43 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -404,7 +404,7 @@ def generate_autosummary_docs(sources: List[str], output_dir: str = None, else: exceptions = exc.exceptions + [exc2] - errors = list(set("* %s: %s" % (type(e).__name__, e) for e in exceptions)) + errors = list({"* %s: %s" % (type(e).__name__, e) for e in exceptions}) logger.warning(__('[autosummary] failed to import %s.\nPossible hints:\n%s'), entry.name, '\n'.join(errors)) continue @@ -468,7 +468,7 @@ def find_autosummary_in_docstring(name: str, filename: str = None) -> List[Autos except AttributeError: pass except ImportExceptionGroup as exc: - errors = list(set("* %s: %s" % (type(e).__name__, e) for e in exc.exceptions)) + errors = list({"* %s: %s" % (type(e).__name__, e) for e in exc.exceptions}) print('Failed to import %s.\nPossible hints:\n%s' % (name, '\n'.join(errors))) except SystemExit: print("Failed to import '%s'; the module executes module level " diff --git a/sphinx/ext/napoleon/docstring.py b/sphinx/ext/napoleon/docstring.py index a1142453737..d866594a335 100644 --- a/sphinx/ext/napoleon/docstring.py +++ b/sphinx/ext/napoleon/docstring.py @@ -931,12 +931,12 @@ def postprocess(item): else: return [item] - tokens = list( + tokens = [ item for raw_token in _token_regex.split(spec) for item in postprocess(raw_token) if item - ) + ] return tokens diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index b5a49a9d118..c8e8c6b94e7 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -424,7 +424,7 @@ def encode_uri(uri: str) -> str: split = list(urlsplit(uri)) split[1] = split[1].encode('idna').decode('ascii') split[2] = quote_plus(split[2].encode(), '/') - query = list((q, v.encode()) for (q, v) in parse_qsl(split[3])) + query = [(q, v.encode()) for (q, v) in parse_qsl(split[3])] split[3] = urlencode(query) return urlunsplit(split) From afb988c5b69f701e1d2651f40757418568aa08fe Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sat, 4 Jun 2022 09:57:29 +0100 Subject: [PATCH 40/59] Add Changelog to project_urls --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4ec21569713..de8be1d4971 100644 --- a/setup.py +++ b/setup.py @@ -67,6 +67,7 @@ long_description_content_type='text/x-rst', project_urls={ "Code": "https://github.com/sphinx-doc/sphinx", + "Changelog": "https://www.sphinx-doc.org/en/master/changes.html", "Issue tracker": "https://github.com/sphinx-doc/sphinx/issues", }, zip_safe=False, From fbd374859ab79de65e7db78377e9824c4352bff1 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 4 Jun 2022 17:09:44 +0100 Subject: [PATCH 41/59] Add `aside.topic` for Docutils 0.18+ (sphinx13) --- doc/_themes/sphinx13/static/sphinx13.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/_themes/sphinx13/static/sphinx13.css b/doc/_themes/sphinx13/static/sphinx13.css index c8fb2e5c99b..789a5d4f312 100644 --- a/doc/_themes/sphinx13/static/sphinx13.css +++ b/doc/_themes/sphinx13/static/sphinx13.css @@ -372,7 +372,8 @@ div.quotebar { margin-left: 1em; } -div.topic { +div.topic, +aside.topic { background-color: #f8f8f8; } From 7286291f9326bc023441d64eba9b26b09c2e37f1 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 4 Jun 2022 17:45:09 +0100 Subject: [PATCH 42/59] Add docutils_version_info to `StandaloneHTMLBuilder.globalcontext` --- CHANGES | 3 +++ doc/templating.rst | 9 +++++++++ sphinx/builders/html/__init__.py | 1 + 3 files changed, 13 insertions(+) diff --git a/CHANGES b/CHANGES index ca68c54703c..59fe2480f83 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,9 @@ Deprecated Features added -------------- +* #10523: html theme: Expose the Docutils's version info tuple as a template variable, + ``docutils_version_info``. Patch by Adam Turner. + Bugs fixed ---------- diff --git a/doc/templating.rst b/doc/templating.rst index 3d80edd6009..41f74a715c4 100644 --- a/doc/templating.rst +++ b/doc/templating.rst @@ -383,6 +383,15 @@ in the future. .. versionadded:: 4.2 +.. data:: docutils_version_info + + The version of Docutils used to build represented as a tuple of five elements. + For Docutils version 0.16.1 beta 2 this would be `(0, 16, 1, 'beta', 1)``. + The fourth element can be one of: ``alpha``, ``beta``, ``candidate``, ``final``. + ``final`` always has 0 as the last element. + + .. versionadded:: 5.0.2 + .. data:: style The name of the main stylesheet, as given by the theme or diff --git a/sphinx/builders/html/__init__.py b/sphinx/builders/html/__init__.py index b320b0df588..f5ab2d828e0 100644 --- a/sphinx/builders/html/__init__.py +++ b/sphinx/builders/html/__init__.py @@ -536,6 +536,7 @@ def prepare_writing(self, docnames: Set[str]) -> None: 'css_files': self.css_files, 'sphinx_version': __display_version__, 'sphinx_version_tuple': sphinx_version, + 'docutils_version_info': docutils.__version_info__[:5], 'style': self._get_style_filename(), 'rellinks': rellinks, 'builder': self.name, From bbf1576277f2544327a9252f448a873fd60bc171 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 4 Jun 2022 18:08:10 +0100 Subject: [PATCH 43/59] Fix double brackets on Docutils 0.18+ --- CHANGES | 1 + sphinx/themes/basic/static/basic.css_t | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 59fe2480f83..09ae5f90152 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed ---------- * #10509: autosummary: autosummary fails with a shared library +* #10523: html theme: Fix double brackets on citation references in Docutils 0.18+. Testing -------- diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 9e5047afe6f..67bfec755ca 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -237,6 +237,7 @@ a.headerlink { visibility: hidden; } +{%- if docutils_version_info[:2] < (0, 18) %} a.brackets:before, span.brackets > a:before{ content: "["; @@ -246,6 +247,7 @@ a.brackets:after, span.brackets > a:after { content: "]"; } +{% endif %} h1:hover > a.headerlink, h2:hover > a.headerlink, From 5ddc22baf85cd46b7a4f2175deb9fcb3359a8858 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 4 Jun 2022 20:53:57 +0100 Subject: [PATCH 44/59] Fix an example in the templating document Co-authored-by: Matthias Geier --- doc/templating.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/templating.rst b/doc/templating.rst index 41f74a715c4..d9755a836b1 100644 --- a/doc/templating.rst +++ b/doc/templating.rst @@ -386,7 +386,7 @@ in the future. .. data:: docutils_version_info The version of Docutils used to build represented as a tuple of five elements. - For Docutils version 0.16.1 beta 2 this would be `(0, 16, 1, 'beta', 1)``. + For Docutils version 0.16.1 beta 2 this would be `(0, 16, 1, 'beta', 2)``. The fourth element can be one of: ``alpha``, ``beta``, ``candidate``, ``final``. ``final`` always has 0 as the last element. From 25656d07b79aba5917ef74c81c104c09636b656f Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 4 Jun 2022 20:56:14 +0100 Subject: [PATCH 45/59] Line length --- CHANGES | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 09ae5f90152..8e8984bfa1a 100644 --- a/CHANGES +++ b/CHANGES @@ -13,8 +13,8 @@ Deprecated Features added -------------- -* #10523: html theme: Expose the Docutils's version info tuple as a template variable, - ``docutils_version_info``. Patch by Adam Turner. +* #10523: html theme: Expose the Docutils's version info tuple as a template + variable, ``docutils_version_info``. Patch by Adam Turner. Bugs fixed ---------- From 36e79d708964be486115a7192b7622a310bf715c Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Sat, 4 Jun 2022 21:07:10 +0100 Subject: [PATCH 46/59] Update credits in CHANGES --- CHANGES | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/CHANGES b/CHANGES index 8e8984bfa1a..3098438ac38 100644 --- a/CHANGES +++ b/CHANGES @@ -13,14 +13,15 @@ Deprecated Features added -------------- -* #10523: html theme: Expose the Docutils's version info tuple as a template +* #10523: HTML Theme: Expose the Docutils's version info tuple as a template variable, ``docutils_version_info``. Patch by Adam Turner. Bugs fixed ---------- * #10509: autosummary: autosummary fails with a shared library -* #10523: html theme: Fix double brackets on citation references in Docutils 0.18+. +* #10523: HTML Theme: Fix double brackets on citation references in Docutils 0.18+. + Patch by Adam Turner. Testing -------- @@ -32,10 +33,11 @@ Bugs fixed ---------- * #10498: gettext: TypeError is raised when sorting warning messages if a node - has no line number -* #10493: html theme: :rst:dir:`topic` directive is rendered incorrectly with - docutils-0.18 -* #10495: IndexError is raised for a :rst:role:`kbd` role having a separator + has no line number. Patch by Adam Turner. +* #10493: HTML Theme: :rst:dir:`topic` directive is rendered incorrectly with + Docutils 0.18. Patch by Adam Turner. +* #10495: IndexError is raised for a :rst:role:`kbd` role having a separator. + Patch by Adam Turner. Release 5.0.0 (released May 30, 2022) ===================================== @@ -76,6 +78,7 @@ Incompatible changes * #10474: :confval:`language` does not accept ``None`` as it value. The default value of ``language`` becomes to ``'en'`` now. + Patch by Adam Turner and Takeshi KOMIYA. Deprecated ---------- @@ -131,11 +134,12 @@ Features added non-imported * #10028: Removed internal usages of JavaScript frameworks (jQuery and underscore.js) and modernised ``doctools.js`` and ``searchtools.js`` to - EMCAScript 2018. + EMCAScript 2018. Patch by Adam Turner. * #10302: C++, add support for conditional expressions (``?:``). * #5157, #10251: Inline code is able to be highlighted via :rst:dir:`role` directive -* #10337: Make sphinx-build faster by caching Publisher object during build +* #10337: Make sphinx-build faster by caching Publisher object during build. + Patch by Adam Turner. Bugs fixed ---------- @@ -143,7 +147,7 @@ Bugs fixed 5.0.0 b1 * #10200: apidoc: Duplicated submodules are shown for modules having both .pyx - and .so files + and .so files. Patch by Adam Turner and Takeshi KOMIYA. * #10279: autodoc: Default values for keyword only arguments in overloaded functions are rendered as a string literal * #10280: autodoc: :confval:`autodoc_docstring_signature` unexpectedly generates From c753a3f92b5e6fdefde20bcf5a9325cb76101544 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 5 Jun 2022 00:22:05 +0000 Subject: [PATCH 47/59] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7947 -> 7947 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7976 -> 7976 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2424 -> 2424 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 11216 -> 11216 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82273 -> 82273 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1864 -> 1864 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70039 -> 70039 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 99940 -> 99940 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10819 -> 10819 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 84383 -> 85235 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 4 +-- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8822 -> 8822 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo | Bin 643 -> 643 bytes sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/sphinx.pot | 38 +++++++++++----------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5971 -> 5971 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 64983 -> 64983 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 8 ++--- sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po | 38 +++++++++++----------- 31 files changed, 272 insertions(+), 272 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 6b2f2ce7be798fabad35ecaddcdbfe6102da37cc..f904a88c53cfe1802fd47d0fb93bfd97e357da66 100644 GIT binary patch delta 23 ecmeCS>$cmVAi!m&YhbEiU|?lrxLHf!As+xu9tJ)D delta 23 ecmeCS>$cmVAi!m+Yhxmio#As+xu&jwQf diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 56e17161548..5ba13cd135a 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Abdullah ahmed , 2020\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" @@ -175,7 +175,7 @@ msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "بناء [%s]" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "قراءة القوالب" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index e2874fd0a8cd8a321ad1469b3e008f59392e90fd..62d3ea4388691535e064736ddc934d397f98f3fe 100644 GIT binary patch delta 23 ecmZ2sx592iH!qi&u7Rn7fq|8g;pVBllLY}slplLY}=C, 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index cf8917a1c59c1e6b7ab2a68911a1963f4e967701..aa9488408f13458d5337914a07155da111853f14 100644 GIT binary patch delta 23 ecmew%^h0PvF)Npuu7Rn7fq|8g;pSS_-^>7C5eHuY delta 23 ecmew%^h0PvF)Np;u92mJfw`5j<>p$}-^>7C!UuE! diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index f5ef21c3c44..2a39570587c 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Julien Malard , 2019\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index c00408f8ebbb43a0589045c612cd25ff1b0c512e..d50eaea340cb488dee4d4e2529659accdcb7c018 100644 GIT binary patch delta 23 ecmcZ*ej$8=wiK6{u7Rn7fq|8g;bv2**@6IGMF!yj delta 23 ecmcZ*ej$8=wiK7Cu92mJfw`5j, 2018\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" @@ -177,7 +177,7 @@ msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -774,21 +774,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3027,24 +3027,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 795666e7a188b51fb26ff42b4a1c08e495aa0092..2213055cb77a4c9b70f21685940f3051733de70d 100644 GIT binary patch delta 25 gcmaFZ#QLy_bwhn4mzl1Cse*xlm674*&c+-20e!6r!~g&Q delta 25 gcmaFZ#QLy_bwhn4m#MCirGkOEm9gdK&c+-20e)Ty*#H0l diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index daabaee8b62..fda828e7faf 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -176,7 +176,7 @@ msgstr "ο κατάλογος παραμετροποίησης δεν περιλ #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -576,7 +576,7 @@ msgstr "τα αρχεία πηγής %d που δόθηκαν στη γραμμ msgid "targets for %d source files that are out of date" msgstr "στόχοι για τα αρχεία πηγής %d τα οποία είναι ξεπερασμένα" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "μεταγλώττιση [%s]:" @@ -773,21 +773,21 @@ msgstr "η τιμή παραμετροποίησης \"version\" δεν πρέπ msgid "invalid css_file: %r, ignored" msgstr "ανέγκυρο css_file: %r, θα αγνοηθεί" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Οι κατάλογοι των μηνυμάτων είναι στο %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "στόχοι για %d πρότυπα αρχεία" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "ανάγνωση προτύπων..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "εγγραφή καταλόγων μηνύματος..." @@ -1208,7 +1208,7 @@ msgid "job number should be a positive number" msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3026,24 +3026,24 @@ msgid "" msgstr "Το autosummary δημιουργεί αρχεία .rst εσωτερικά. Αλλά το δικό σας source_suffix δεν περιλαμβάνει .rst. Θα παραλειφθεί." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] δημιουργία autosummary για: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[αυτόματη περίληψη] εγγραφή στο %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3051,7 +3051,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3066,30 +3066,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nΔημιουργία ReStrucuredText χρησιμοποιώντας τις οδηγίες autosummary.\n\nΤο sphinx-autogen αποτελεί ένα πρόσθιο εργαλείο για το sphinx.ext.autosummary.generate. Δημιουργεί \nτα αρχεία reStructuredText από τις οδηγίες autosummary οι οποίες περιλαμβάνονται στα \nπαραδοθέντα αρχεία εισόδου.\n\nΗ μορφή της οδηγίας autosummary τεκμηρειώνεται στο \nδομοστοιχείο ``sphinx.ext.autosummary`` της Python και μπορεί να αναγνωστεί χρησιμοποιώντας το :: \n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "αρχεία πηγής για να δημιουργηθούν τα αρχεία reST" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "ο κατάλογος που θα τοποθετεί όλο το αποτέλεσμα εξόδου" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "προεπιλεγμένη επέκταση για αρχεία (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "προσαρμοσμένος κατάλογος προτύπου (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "μέλη εισαγμένα στο έγγραφο (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 541af4b4b6cd46808ac85273eed7a7fe1ef5f947..37754b73af2b3a4ddcc08508d2722e6e13e9f26a 100644 GIT binary patch delta 23 ecmX@XcY<$&0SlLzu7Rn7fq|8g;btoqK4t(;c?E(1 delta 23 ecmX@XcY<$&0SlL@u92mJfw`5j, 2021\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index e35316638e56c5221da0d9aca9d3024424f58973..43dd0396298bdfefca4c4cf1dde34fd031ea117e 100644 GIT binary patch delta 25 hcmbQfm}UB6mJPC#xXg47Oce|atc(mdt4}JZ2LNr62qpjk delta 25 hcmbQfm}UB6mJPC#xJ-48EENpQt&A-, 2016,2021\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" @@ -180,7 +180,7 @@ msgstr "directorio de configuración no contiene un archivo conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -580,7 +580,7 @@ msgstr "%d archivos fuente dados en la línea de comandos" msgid "targets for %d source files that are out of date" msgstr "los objetivos para %d los archivos fuentes que estan desactualizados" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "compilando [%s]:" @@ -777,21 +777,21 @@ msgstr "el valor de configuración \"version\" no debe estar vacío para EPUB3" msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Los catálogos de mensajes están en %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "objetivos para los archivos de plantillas %d" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "leyendo plantillas..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "escribiendo catálogos de mensajes..." @@ -1212,7 +1212,7 @@ msgid "job number should be a positive number" msgstr "número de trabajo debe ser un número positivo" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3030,24 +3030,24 @@ msgid "" msgstr "autosummary genera archivos .rst internamente. Pero su source_suffix no contiene archivo .rst. Saltado." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: no se pudo determinar %r que se documentará, se produjo la siguiente excepción:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] generar autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escribiendo a %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3055,7 +3055,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3070,30 +3070,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGenere ReStructuredText usando directivas de resumen automático \"autosummary\".\n\nsphinx-autogen es una interfaz para sphinx.ext.autosummary.generate. Genera\nlos archivos reStructuredText de las directivas autosummary contenidas en el\nlos archivos de entrada dados.\n\nEl formato de la directiva autosummary está documentado en el módulo Python\n``sphinx.ext.autosummary`` y se puede leer usando el siguiente comando::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "archivos fuente para generar archivos rST para" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "directorio para colocar toda la salida en" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufijo predeterminado para archivos (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "directorio de plantillas personalizadas (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documento importados miembros (predeterminado: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index eb65ab8c463cc1aa23ddb3ef3d295140b9fbeebc..267fc55712ef7b32f25095e91ac094ead69feacb 100644 GIT binary patch delta 25 hcmaFT!}g?yZ3E{rE;C&NQw0M9Dm42O9caSD`U&e!pj05004Na2<-p> diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index bc7ec34005c..69cd9f748ac 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hadi F , 2020-2021\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" @@ -177,7 +177,7 @@ msgstr "شاخه‌ی پیکربندی(%s)، پرونده‌ی conf.py را ند #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "پرونده‌های منبع %d داده شده در خط فرمان" msgid "targets for %d source files that are out of date" msgstr "مقصد‌های %d پرونده‌های منبعی هستند که منسوخ شده‌اند" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "ساخت [%s]: " @@ -774,21 +774,21 @@ msgstr "مقدار پیکربندی ویراست (\"version\") نباید برا msgid "invalid css_file: %r, ignored" msgstr "پرونده‌ی css نامعتبر%r: نادیده گرفته می‌شود" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "سیاهه‌های پیام‌ها در %(outdir)s است." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "مقصد‌های قالب پرونده‌های %d" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "خواندن قالب‌ها... " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "نوشتن سیاهه‌های پیام... " @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "شماره‌ی کار باید یک عدد مثبت باشد" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "برای اطّلاعات بیشتر به بروید." @@ -3027,24 +3027,24 @@ msgid "" msgstr "خلاصه‌ی خودکار به طور داخلی پرونده‌های rst را ایجاد می‌کند. ولی پسوند منبع شما شامل rst نیست. نادیده گرفته می‌شود." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "خلاصه‌ی خودکار: شکست در تشخیص %r برای مستندسازی، این ایراد به وجود آمد:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[خلاصه‌ی خودکار] تولید خلاصه‌ی خودکار برای: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[خلاصه‌ی خودکار] نوشتن در %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nتولید ReStructuredText با استفاده از دستورالعمل‌های خلاصه‌ی خودکار.\n\nخودکارساز اسفینکس رابط کابر پسندی برای sphinx.ext.autosummary.generate (پیمانه‌ی افزونه‌ی خلاصه‌ساز اسفنیکس) است.\nاین افزونه پرونده های متن reStructuredText را از دستورالعمل‌های خلاصه‌ی خودکاری تولید می‌کند که در پرونده‌های درون‌داد مشخّص شده قرار دارد.\n\nقالب دستورالعمل خلاصه‌ی خودکار درپیمانه‌ی افزونه‌ی خلاصه‌ی خودکار اسفنیکس (sphinx.ext.autosummary) مستند سازی شده می توان آن را با دستور زیر خواند::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "پرونده‌های منبع برای تولید پرونده‌های rST" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "پوشه‌ای برای قرار دادن همه‌ی برون دادها در آن" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "پسوند پیش فرض برای پرونده‌ها (پیش‌فرض: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "شاخه‌ی سفارشی قالب (پیش‌گزیده: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "اجزای فراخوان شده‌ی سند (پیش‌گزیده: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index ed7d1da9a054e6bb1d762b93cc2773653f220e88..7f3e61c15b350d410364732e1d390b648a75bd12 100644 GIT binary patch delta 23 ecmX>cayVo|h9sAnu7Rn7fq|8g;pQUAivj>)AO~&$ delta 23 ecmX>cayVo|h9sA%u92mJfw`5j<>n&Eivj>)(FcP7 diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index e265e8e3f70..f53e0ecb22a 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Antonari Palmio, 2022\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" @@ -179,7 +179,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -579,7 +579,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -776,21 +776,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1211,7 +1211,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3029,24 +3029,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3054,7 +3054,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3069,30 +3069,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 73d0ffb8437dae86585e36e99e9cf9c6580ef3bf..f1ecc115f3d64a577bfeaacc0b3d8d940b18418f 100644 GIT binary patch delta 12964 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 delta 12217 zcmYM)37n2q|Htv`w$8#}7K0hHV1|Y3A-}#+$-_)(Q%Pub}>;BQd z%tD8MZkBSKP}~@-=>PvojdPqiF2`ws3;4|bc*nWU?XC%q)0XS4n>fx`;<<^AGZG(S zMI4soIAw7n#^8%MAJ<|FOls;l{Lk%-=l`>~uo2VnHrB$#WXJKw9_WPwF$({K8t5As zj+-zNkDxmI8w2nTRzaT>$El2=sQ1O9FE+&h`gbyDROLc<)CWhQAG$FD=c8V<8TH^E z)Qi5e_kX}H#P?9|dAgb7w8BBCc(wHl)ca3hFkZ%L^zS^PQ2~RRn~~STI>bpxwwzw5 znZAi3_z~*<5&R5qA*^bwY=jT3vE;udaX)m2(I}*miA&KlGV~{Y zgeG0rqP+kY*dk*#&UQKeeec`;3I3bwx+`-sOM&4e>{biuxUHTiN;JUi=&W7 zo$;83pJ96}#d=pmcP@t?p{=Y|q<#8Tj45mG8J}?5y5KqMf7pcaE#M?WV z4z8f$zfq|Urw~+BQP$?DjC4YESc2DZJyyVl&yWH7cUIBR2M%E`{1H_=%{m%;pi(~( zd*WPF27bm$Sf-QXG{!*m!A#VII-@dEf}`*gq)ePB3P%I@54!b&0vf(J*WM_`SmKpf z509c=d=IN&=`JP?Lfwx*6;n1=#(}8Jjl+B_KxOCzY6;I^1N^BA`L9Z9{kk%GE<|-R zFKC7piQA((=!sr91B38Y)PPo^)^;O?;y$c_m#{iML>*{BdB#}O=i8$0_s%2#(KIG< zK~=j9hvOw|j5*zz6&9k-iLX&9ePj*oVP2eS?TVARKN17*3i{y#?1SE{Ul0yOWvb9k zLu)Y~wG>OxA2--|C#w37U>&@PdT}s$)pPZ+944bOl!kh77AiwMQ7IpcTH=wY%of<| z?m09xqxqimTz$LWZT@Ohkp;dl!pF<^lGfr46+9vFdz z_$aff}b5!@kuEd*A87e)oJpz#teM6%-49BgJj8S4@+v+)5`Fq5sV*WAby8h^Pf@s+INa6wrtc=6sKzC&tOK51M8!-Y8p$76hYR#M%%>Wx>Rl;`I z2>YNqSb#ye1GUYLVMjcJ8fZ+R89*;oZOuT{NO2+g_f$6*G_wmBir1|^Q%&{OMGi5i z1FpoasHN#f`jmlJP|q*Gp12&F<9%$1iPKE#2cwo^CMrWqr`Zo|=Yn2%1?ywTbQ5Qy z2Kb_lS7UeLvlxbrXP5zYLapf}48d2i2d>2&bY_}?wnuHpj_89E-87Wy>8O#Fpa!tn zdJeU=hF_X9_=Hg29!oSfU?;}g* zb}GDV)+iKpqdjUV`eH>aLLHqeF#(U*>!n^XyQ4B@aXlARJBx5EZo|4*_f<2nXRsde zG*t1fL(ljBIU4G~cb++bl2L1$k6O#gs2MKA7PtlLjX*qcVTbO+zV*e#?yL8Pp7lQ3Lq|^`bqf&;4p+ zzqd^W8lxB2Q_v4vqdwOOtKk$ZgGHE(Z(#%;$ByW}Nkgg2SZu0%2`_RWtW>2r(-(t094Vf!cbg~8ratu?WS>-Mhv=E zn2|QX?!;ZNC2l}v;u^NcS}VVq9nYdRC7aS_(Woi_d%H8bzEW*|+lEOAHF0P;}VYX(N)7Sw=G zVIC&WAEQVWviAv=?dh$_-_Y>2rSiG^5){+;DCp5nrO)EfSYIxzmhD(L#m z7=Rj36#8Nu24QnlDm$S*KNxiYO~eSCZR0hl=RUUXLC^mGj>cGSl-gm6ZUW{Jzl`

!xs=XQ8g`+q8p6dd!V8TkhE zA>M%+@c~T6<5r)YW?&hp%#Fm+Sc0m7a=T0>!Z49I9#uO-Fb8KM<=`Aa_f#4$?lyl$ zdx$Z_d3($YrsFfjMOYtyLG6Z0d(DB9U~PuVKr7UMJ7Wg+MP+CeYJ%Ib3En^rEP5a7 zKa@uAeddMxQTzTdCg4TX00Q=#pI(Eo9Pvu5itnRdybBxQeN-*fKVaU|5>SX_|W)jr!bhqt$tDhdPmU@G>&j`sRG zOyxzpZT$GZW`KdGOlte!^L&0RhT|_7hNXWn@2!Oe#3`r=eS|gX-#JYq1Mi?x)a(@{jeu6rJ z+x}wSI}r8WNp9PijY?4w`r%?5uS31Er{R4 z$u9mf3-$TlznO`SKr-fb#@GvUtqaTzrvxYPzz3)ztbNt|iY>+z;scn3|6)T-x@O{M zaWL^xT!F6N&2Cs_J%&1Oo_J!`Kjsf}HupfyWCo5z|LgoM2fA?-Uc(;P^G~y_KEfE{ z->?J&{^GA$a6LB0YJZ#0wZ{g;)3F0?!gzdyarE!R-Y_%jg9*foup%BtzE_+xI2u>p zu=>{ut{NRElTfr+5RE()ABa2JfL}*7%`$ehdZ?Peo4#P#u4Yfq3E} z`EN$!H!f7e+K-32jz+BG@?7YHir1qLp2d3jE6zqgm&@}lS&X%azrreb)%p-C5?3tc zaw0JV)360KY*IJ`?kFhU)tq468mE^H|F3V+=bJyb{UuF>-as?gV#}2U9YUm zlge(WS{Q+2M!&`|yoi(V3HHQ^!6x;`P#HUGWB+OiN;w1>eQNco&DDyLU~qM*C3v`B#iU|1h&F60kqlfIS4^)dX*Pp`(;)AFRT*In(1C?s8XmfCNLk(~xs+NvhucFR;S6#DBLr_bWfgS1J z89_ru@;OG}4;YE}P}{3UJ@Y^ZY(zXB)zKQ%{Zm%&r_2mfu`buAqt1(UsH1!)(xCdL!xU79!%^F3DXN2Ar~w~DRrT-Ix(!Sw2BEg$ z3)l*`p=#q!1NOgOP$t%#fPNT3oPs)%^HC{ZjrDP(jZfoH;)~c0GaH&2&PN?YH&M@( zjx)Q!2etM=*b(!wJ8p<`yF7ocFCA}=+C0?E-#~o_>_#0ZS1|>{8=0B*L>*8sU<*8m zow0ml^Z9(#Hh$g4t1*N49BK)}`47r8z)o%&%0LfPN(Q11pyyEs#sYhPJ!TVcL+z3$ zsBg=VCg$@)t#eS%t;Q_ejXEj46V3K)i0U{U_4~q|NkePX88v`cQAP4LYOO!8@g-Cy z{y`leF-c~r7NBZq3+ly}P?`Ea)HaK3YHFYxYH6NB?VhO^r0@TQG_*fApmxE2)CVu2 zw#^Mx2foQBrOia#GGxCE7n{iq3CL>1jt)Ib|& znDeA7YQVEmyK6h@Tl7i>`(G&xYhzx}2AdG)Vl$j+&gYTHC- znT{KwGS?YZ#8Xj4yvW|)id4CC5;f6ls2`z~v(2_`Se=F*?0|Z32x=fRvbW~PZH(CZ addKS3woV;hIBM%Vr_a>fy6$dHxBmeuIrE(W diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 918c282f8d0..8194294f117 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -176,7 +176,7 @@ msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid langauge code. Falling back to 'en' (English)." -msgstr "" +msgstr "잘못된 구성 값을 찾았습니다: 'language = None'. 유효한 언어 코드로 구성을 업데이트하십시오. 대신 'en'(영어)을 사용합니다." #: sphinx/config.py:201 #, python-format @@ -2704,7 +2704,7 @@ msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" "\n" "Traceback: %s" -msgstr "" +msgstr "이미지 변환 명령 %r을(를) 실행할 수 없습니다. 'sphinx.ext.imgconverter'에는 기본적으로 ImageMagick이 필요합니다. 해당 프로그램이 설치되어 있는지 확인하거나, 'image_converter' 옵션을 사용자 정의 변환 명령으로 설정하십시오.\n\n역추적: %s" #: sphinx/ext/imgconverter.py:42 sphinx/ext/imgconverter.py:66 #, python-format diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 88c5abd636f9fc51b3f92284d0629b5e54177fd6..e2ed1948dd7c0333558992161937c92ac4d73e60 100644 GIT binary patch delta 23 fcmez7^37$#F%d2^T?11E0|P4~!_5~&mhl1rZkq@= delta 23 fcmez7^37$#F%d3PT_Z~c19K~5%gq-=mhl1rZ%hbH diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 3ede577c4ce..473568ec04b 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Razvan Stefanescu , 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.mo index 4cc1e593893fdae8d7d09ca8d69958a46d2403c0..4327c53b9ba71860a3432e1f0b8d6aa6b3589ec5 100644 GIT binary patch delta 21 ccmZo>ZDyU&#$~2!V5(qXU}a>ual&Ut06-T8O8@`> delta 21 ccmZo>ZDyU&#$~E&WT{|aZe?t_al&Ut06?<_U;qFB diff --git a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po index fa197739b6b..d165b4b0312 100644 --- a/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru_RU/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Russian (Russia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru_RU/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 65640507473..48a1204b017 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -172,7 +172,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -776,21 +776,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1211,7 +1211,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 sphinx/ext/apidoc.py:303 -#: sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3043,7 +3043,7 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following " @@ -3051,17 +3051,17 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3069,7 +3069,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3086,30 +3086,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index db9820829d3a9fddffd23d313bee203c102affd0..8c93eb491589a0308b68835d409054ef69afe0de 100644 GIT binary patch delta 23 fcmcbtcUf=4d|oayT?11E0|P4~!_6ysS8)OWVHpQ% delta 23 fcmcbtcUf=4d|ob7T_Z~c19K~5%grl!S8)OWVaf-8 diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 0213455aabb..23cfc9f17e5 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Hoat Le Van , 2014\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 4ea620e655b1f50bc894c5ac1a001f2c6899848e..d69bc9bb1bdf4f7917e6c39ec114fdcbaab25444 100644 GIT binary patch delta 48 zcmccqoB8^0<_%W!1lwAl?_KwN<8Dm`)nWyWr){m9z2~iFWCGGZ<}2%hXxX#73;s>KQ#Pg|F7_MW$zkqJoun6Io0qGiwSG5`Q+ CWf$}S diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index dfcb38efb72..fc6f1ff18dc 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -2019,7 +2019,7 @@ msgstr "" #: sphinx/domains/javascript.py:131 #, python-format msgid "%s() (built-in function)" -msgstr "%s() (內置函数)" +msgstr "%s() (内置函数)" #: sphinx/domains/javascript.py:132 sphinx/domains/python.py:824 #, python-format @@ -2104,7 +2104,7 @@ msgstr "语句" #: sphinx/domains/python.py:56 msgid "built-in function" -msgstr "內置函数" +msgstr "内置函数" #: sphinx/domains/python.py:438 msgid "Variables" @@ -2128,12 +2128,12 @@ msgstr "%s() (在 %s 模块中)" #: sphinx/domains/python.py:731 #, python-format msgid "%s (built-in variable)" -msgstr "%s (內置变量)" +msgstr "%s (内置变量)" #: sphinx/domains/python.py:756 #, python-format msgid "%s (built-in class)" -msgstr "%s (內置类)" +msgstr "%s (内置类)" #: sphinx/domains/python.py:757 #, python-format diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.mo index 5fc25ea7a94e8534d360ffd3f38e21bdf88e3698..c0d86f930d257142dbec653252552e00903374cc 100644 GIT binary patch delta 21 ccmey${FQk^8<&}`fvJLlft8Wr#tEs608oDhod5s; delta 21 ccmey${FQk^8<(lBk)?uxxs|cy#tEs608twTvH$=8 diff --git a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po index 77c45ef163c..76ef48b7b66 100644 --- a/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Chinese (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_HK/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " From 0926edeb40f1bfb977582619a6a70daa61e589c6 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 6 Jun 2022 23:14:27 +0900 Subject: [PATCH 48/59] Update CHANGES for PR #10511 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index ca68c54703c..1b3dec4c32b 100644 --- a/CHANGES +++ b/CHANGES @@ -17,6 +17,7 @@ Bugs fixed ---------- * #10509: autosummary: autosummary fails with a shared library +* #10497: py domain: Failed to resolve strings in Literal Testing -------- From 14d669945b86c7bd91868e9a937cbdd35dc675a3 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Mon, 6 Jun 2022 16:27:32 +0100 Subject: [PATCH 49/59] Capitalise "EPUB" Co-authored-by: Takeshi KOMIYA --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index ac51e489190..522083bbaa5 100644 --- a/README.rst +++ b/README.rst @@ -27,7 +27,7 @@ and translating suite, the Docutils. Features ======== -* **Output formats**: HTML, PDF, plain text, EPub, TeX, manual pages, and more +* **Output formats**: HTML, PDF, plain text, EPUB, TeX, manual pages, and more * **Extensive cross-references**: semantic markup and automatic links for functions, classes, glossary terms and similar pieces of information * **Hierarchical structure**: easy definition of a document tree, with automatic From 8da2efb1d71ab2d384ddc90cf4fdebe5d18e91cd Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 7 Jun 2022 23:09:12 +0100 Subject: [PATCH 50/59] Rename CSS files to CSS template files --- sphinx/themes/nonav/static/{nonav.css => nonav.css_t} | 0 sphinx/themes/pyramid/static/{epub.css => epub.css_t} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename sphinx/themes/nonav/static/{nonav.css => nonav.css_t} (100%) rename sphinx/themes/pyramid/static/{epub.css => epub.css_t} (100%) diff --git a/sphinx/themes/nonav/static/nonav.css b/sphinx/themes/nonav/static/nonav.css_t similarity index 100% rename from sphinx/themes/nonav/static/nonav.css rename to sphinx/themes/nonav/static/nonav.css_t diff --git a/sphinx/themes/pyramid/static/epub.css b/sphinx/themes/pyramid/static/epub.css_t similarity index 100% rename from sphinx/themes/pyramid/static/epub.css rename to sphinx/themes/pyramid/static/epub.css_t From 5806f0af2788db40661d62e5e88c2c1560ae46b6 Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 7 Jun 2022 23:10:15 +0100 Subject: [PATCH 51/59] Add `nav.contents` everywhere that `div.topic` is used --- doc/_themes/sphinx13/static/sphinx13.css | 1 + sphinx/themes/basic/static/basic.css_t | 12 ++++++++++++ sphinx/themes/bizstyle/static/bizstyle.css_t | 3 +++ sphinx/themes/classic/static/classic.css_t | 3 +++ sphinx/themes/epub/static/epub.css_t | 3 +++ sphinx/themes/nature/static/nature.css_t | 3 +++ sphinx/themes/nonav/static/nonav.css_t | 3 +++ sphinx/themes/pyramid/static/epub.css_t | 3 +++ sphinx/themes/pyramid/static/pyramid.css_t | 3 +++ sphinx/themes/sphinxdoc/static/sphinxdoc.css_t | 3 +++ sphinx/themes/traditional/static/traditional.css_t | 3 +++ 11 files changed, 40 insertions(+) diff --git a/doc/_themes/sphinx13/static/sphinx13.css b/doc/_themes/sphinx13/static/sphinx13.css index 789a5d4f312..5d64eda512a 100644 --- a/doc/_themes/sphinx13/static/sphinx13.css +++ b/doc/_themes/sphinx13/static/sphinx13.css @@ -372,6 +372,7 @@ div.quotebar { margin-left: 1em; } +nav.contents, div.topic, aside.topic { background-color: #f8f8f8; diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 67bfec755ca..0a0447f0ff4 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -337,12 +337,18 @@ p.sidebar-title { font-weight: bold; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.admonition, div.topic, aside.topic, blockquote { clear: left; } /* -- topics ---------------------------------------------------------------- */ +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { border: 1px solid #ccc; padding: 7px; @@ -381,6 +387,9 @@ div.body p.centered { div.sidebar > :last-child, aside.sidebar > :last-child, +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents > :last-child, +{% endif %} div.topic > :last-child, aside.topic > :last-child, div.admonition > :last-child { @@ -389,6 +398,9 @@ div.admonition > :last-child { div.sidebar::after, aside.sidebar::after, +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents::after, +{% endif %} div.topic::after, aside.topic::after, div.admonition::after, diff --git a/sphinx/themes/bizstyle/static/bizstyle.css_t b/sphinx/themes/bizstyle/static/bizstyle.css_t index b5c84e0bb59..47dcc7e4fb0 100644 --- a/sphinx/themes/bizstyle/static/bizstyle.css_t +++ b/sphinx/themes/bizstyle/static/bizstyle.css_t @@ -306,6 +306,9 @@ div.quotebar { border: 1px solid #ccc; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background-color: #f8f8f8; } diff --git a/sphinx/themes/classic/static/classic.css_t b/sphinx/themes/classic/static/classic.css_t index 58b55c8bf53..9107dc9344d 100644 --- a/sphinx/themes/classic/static/classic.css_t +++ b/sphinx/themes/classic/static/classic.css_t @@ -290,6 +290,9 @@ div.seealso { border: 1px solid #ff6; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background-color: #eee; } diff --git a/sphinx/themes/epub/static/epub.css_t b/sphinx/themes/epub/static/epub.css_t index bd64a1bc868..9cc47152bdc 100644 --- a/sphinx/themes/epub/static/epub.css_t +++ b/sphinx/themes/epub/static/epub.css_t @@ -245,6 +245,9 @@ p.sidebar-title { /* -- topics ---------------------------------------------------------------- */ +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { border: 1px solid #ccc; padding: 7px 7px 0 7px; diff --git a/sphinx/themes/nature/static/nature.css_t b/sphinx/themes/nature/static/nature.css_t index f3c0d0224a6..c1a2cd6cb71 100644 --- a/sphinx/themes/nature/static/nature.css_t +++ b/sphinx/themes/nature/static/nature.css_t @@ -194,6 +194,9 @@ div.seealso { border: 1px solid #ff6; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background-color: #eee; } diff --git a/sphinx/themes/nonav/static/nonav.css_t b/sphinx/themes/nonav/static/nonav.css_t index 90c3300cf03..d62536ab230 100644 --- a/sphinx/themes/nonav/static/nonav.css_t +++ b/sphinx/themes/nonav/static/nonav.css_t @@ -234,6 +234,9 @@ p.sidebar-title { /* -- topics ---------------------------------------------------------------- */ +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { border: 1px solid #ccc; padding: 7px 7px 0 7px; diff --git a/sphinx/themes/pyramid/static/epub.css_t b/sphinx/themes/pyramid/static/epub.css_t index 8606c8c8de0..7f59c670c84 100644 --- a/sphinx/themes/pyramid/static/epub.css_t +++ b/sphinx/themes/pyramid/static/epub.css_t @@ -254,6 +254,9 @@ div.seealso { border: 1px solid #ff6; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background-color: #eee; } diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index f093ba16493..bf18b8b156a 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -245,6 +245,9 @@ div.seealso { padding: 10px 20px 10px 60px; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background: #eeeeee; border: 2px solid #C6C9CB; diff --git a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t index b6de4ae6f2e..f6a83840425 100644 --- a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t +++ b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t @@ -266,6 +266,9 @@ div.quotebar { border: 1px solid #ccc; } +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background-color: #f8f8f8; } diff --git a/sphinx/themes/traditional/static/traditional.css_t b/sphinx/themes/traditional/static/traditional.css_t index b5b05dc2186..5caf48ccf6c 100644 --- a/sphinx/themes/traditional/static/traditional.css_t +++ b/sphinx/themes/traditional/static/traditional.css_t @@ -506,6 +506,9 @@ p.rubric { /* "Topics" */ +{%- if docutils_version_info[:2] >= (0, 18) %} +nav.contents, +{% endif %} div.topic, aside.topic { background-color: #eee; border: 1px solid #ccc; From 27f05328d0369ad0db85c27935d52fdadf020f6b Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Tue, 7 Jun 2022 23:21:52 +0100 Subject: [PATCH 52/59] Move `aside.topic` into the conditional blocks --- sphinx/themes/basic/static/basic.css_t | 10 ++++++---- sphinx/themes/bizstyle/static/bizstyle.css_t | 3 ++- sphinx/themes/classic/static/classic.css_t | 3 ++- sphinx/themes/epub/static/epub.css_t | 3 ++- sphinx/themes/nature/static/nature.css_t | 3 ++- sphinx/themes/nonav/static/nonav.css_t | 3 ++- sphinx/themes/pyramid/static/epub.css_t | 3 ++- sphinx/themes/pyramid/static/pyramid.css_t | 3 ++- sphinx/themes/sphinxdoc/static/sphinxdoc.css_t | 3 ++- sphinx/themes/traditional/static/traditional.css_t | 3 ++- 10 files changed, 24 insertions(+), 13 deletions(-) diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index 0a0447f0ff4..d8f3fe74626 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -339,8 +339,9 @@ p.sidebar-title { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.admonition, div.topic, aside.topic, blockquote { +div.admonition, div.topic, blockquote { clear: left; } @@ -348,8 +349,9 @@ div.admonition, div.topic, aside.topic, blockquote { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { border: 1px solid #ccc; padding: 7px; margin: 10px 0 10px 0; @@ -389,9 +391,9 @@ div.sidebar > :last-child, aside.sidebar > :last-child, {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents > :last-child, +aside.topic > :last-child, {% endif %} div.topic > :last-child, -aside.topic > :last-child, div.admonition > :last-child { margin-bottom: 0; } @@ -400,9 +402,9 @@ div.sidebar::after, aside.sidebar::after, {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents::after, +aside.topic::after, {% endif %} div.topic::after, -aside.topic::after, div.admonition::after, blockquote::after { display: block; diff --git a/sphinx/themes/bizstyle/static/bizstyle.css_t b/sphinx/themes/bizstyle/static/bizstyle.css_t index 47dcc7e4fb0..a524345f9a9 100644 --- a/sphinx/themes/bizstyle/static/bizstyle.css_t +++ b/sphinx/themes/bizstyle/static/bizstyle.css_t @@ -308,8 +308,9 @@ div.quotebar { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background-color: #f8f8f8; } diff --git a/sphinx/themes/classic/static/classic.css_t b/sphinx/themes/classic/static/classic.css_t index 9107dc9344d..789bec81128 100644 --- a/sphinx/themes/classic/static/classic.css_t +++ b/sphinx/themes/classic/static/classic.css_t @@ -292,8 +292,9 @@ div.seealso { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background-color: #eee; } diff --git a/sphinx/themes/epub/static/epub.css_t b/sphinx/themes/epub/static/epub.css_t index 9cc47152bdc..a30344431a0 100644 --- a/sphinx/themes/epub/static/epub.css_t +++ b/sphinx/themes/epub/static/epub.css_t @@ -247,8 +247,9 @@ p.sidebar-title { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { border: 1px solid #ccc; padding: 7px 7px 0 7px; margin: 10px 0 10px 0; diff --git a/sphinx/themes/nature/static/nature.css_t b/sphinx/themes/nature/static/nature.css_t index c1a2cd6cb71..93f9a594483 100644 --- a/sphinx/themes/nature/static/nature.css_t +++ b/sphinx/themes/nature/static/nature.css_t @@ -196,8 +196,9 @@ div.seealso { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background-color: #eee; } diff --git a/sphinx/themes/nonav/static/nonav.css_t b/sphinx/themes/nonav/static/nonav.css_t index d62536ab230..933365e073c 100644 --- a/sphinx/themes/nonav/static/nonav.css_t +++ b/sphinx/themes/nonav/static/nonav.css_t @@ -236,8 +236,9 @@ p.sidebar-title { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { border: 1px solid #ccc; padding: 7px 7px 0 7px; margin: 10px 0 10px 0; diff --git a/sphinx/themes/pyramid/static/epub.css_t b/sphinx/themes/pyramid/static/epub.css_t index 7f59c670c84..98741d0b8ab 100644 --- a/sphinx/themes/pyramid/static/epub.css_t +++ b/sphinx/themes/pyramid/static/epub.css_t @@ -256,8 +256,9 @@ div.seealso { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background-color: #eee; } diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index bf18b8b156a..0ced6b29f8e 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -247,8 +247,9 @@ div.seealso { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background: #eeeeee; border: 2px solid #C6C9CB; padding: 10px 20px; diff --git a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t index f6a83840425..1817c48bcf5 100644 --- a/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t +++ b/sphinx/themes/sphinxdoc/static/sphinxdoc.css_t @@ -268,8 +268,9 @@ div.quotebar { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background-color: #f8f8f8; } diff --git a/sphinx/themes/traditional/static/traditional.css_t b/sphinx/themes/traditional/static/traditional.css_t index 5caf48ccf6c..8a2f0712fbe 100644 --- a/sphinx/themes/traditional/static/traditional.css_t +++ b/sphinx/themes/traditional/static/traditional.css_t @@ -508,8 +508,9 @@ p.rubric { {%- if docutils_version_info[:2] >= (0, 18) %} nav.contents, +aside.topic, {% endif %} -div.topic, aside.topic { +div.topic { background-color: #eee; border: 1px solid #ccc; padding: 0 7px 0 7px; From 3956cf2249d27ed63e8381c07dfde36f6c96f78f Mon Sep 17 00:00:00 2001 From: Adam Turner <9087854+AA-Turner@users.noreply.github.com> Date: Wed, 8 Jun 2022 15:45:27 +0100 Subject: [PATCH 53/59] Fix documenting inherited attributes --- sphinx/ext/autodoc/__init__.py | 3 ++- sphinx/ext/autodoc/importer.py | 9 +++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index e16ab8ce5c5..642e0cfd805 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -1670,7 +1670,8 @@ def add_directive_header(self, sig: str) -> None: self.add_line(' ' + _('Bases: %s') % ', '.join(base_classes), sourcename) def get_object_members(self, want_all: bool) -> Tuple[bool, ObjectMembers]: - members = get_class_members(self.object, self.objpath, self.get_attr) + members = get_class_members(self.object, self.objpath, self.get_attr, + self.config.autodoc_inherit_docstrings) if not want_all: if not self.options.members: return False, [] # type: ignore diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index 85c1e81be64..d392ae75ddf 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -205,8 +205,8 @@ def get_object_members(subject: Any, objpath: List[str], attrgetter: Callable, return members -def get_class_members(subject: Any, objpath: List[str], attrgetter: Callable - ) -> Dict[str, "ObjectMember"]: +def get_class_members(subject: Any, objpath: List[str], attrgetter: Callable, + inherit_docstrings: bool = True) -> Dict[str, "ObjectMember"]: """Get members and attributes of target class.""" from sphinx.ext.autodoc import INSTANCEATTR, ObjectMember @@ -290,6 +290,11 @@ def get_class_members(subject: Any, objpath: List[str], attrgetter: Callable elif (ns == qualname and docstring and isinstance(members[name], ObjectMember) and not members[name].docstring): + if cls != subject and not inherit_docstrings: + # If we are in the MRO of the class and not the class itself, + # and we do not want to inherit docstrings, then skip setting + # the docstring below + continue # attribute is already known, because dir(subject) enumerates it. # But it has no docstring yet members[name].docstring = '\n'.join(docstring) From 3c128c37053e0d34ae102a495e722957f0a782fc Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 12 Jun 2022 00:20:53 +0000 Subject: [PATCH 54/59] Update message catalogs --- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 492 -> 492 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 7976 -> 7976 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5587 -> 5587 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8265 -> 8265 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 6214 -> 6214 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13160 -> 13160 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 462 -> 462 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo | Bin 14119 -> 14119 bytes sphinx/locale/en_GB/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo | Bin 508 -> 508 bytes sphinx/locale/en_HK/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/es/LC_MESSAGES/sphinx.js | 4 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 70039 -> 83546 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 239 +++++++------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 33773 -> 33773 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 6727 -> 6727 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 2912 -> 2912 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 84635 -> 84635 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 555 -> 555 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 4947 -> 4947 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 98870 -> 98870 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17189 -> 17189 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11533 -> 11533 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 60797 -> 60797 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/is/LC_MESSAGES/sphinx.mo | Bin 3082 -> 3082 bytes sphinx/locale/is/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 85252 -> 85252 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 85235 -> 85235 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 7104 -> 7104 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 6786 -> 6786 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 2011 -> 2011 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 6766 -> 6766 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8869 -> 8869 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19426 -> 19426 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29699 -> 29699 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 544 -> 544 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 81636 -> 81636 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8035 -> 8035 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 8822 -> 8822 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 16427 -> 16427 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 3602 -> 3602 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68471 -> 68471 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5417 -> 5417 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sphinx.pot | 2 +- sphinx/locale/sq/LC_MESSAGES/sphinx.mo | Bin 78113 -> 78113 bytes sphinx/locale/sq/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9426 -> 9426 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 584 -> 584 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 579 -> 579 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6754 -> 6754 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 647 -> 647 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/te/LC_MESSAGES/sphinx.mo | Bin 489 -> 489 bytes sphinx/locale/te/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 58341 -> 58341 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6693 -> 6693 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/yue/LC_MESSAGES/sphinx.mo | Bin 487 -> 487 bytes sphinx/locale/yue/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 64983 -> 69308 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 84 ++--- .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo | Bin 516 -> 516 bytes .../locale/zh_TW.Big5/LC_MESSAGES/sphinx.po | 38 +-- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 41197 -> 56418 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 300 +++++++++--------- 109 files changed, 1230 insertions(+), 1229 deletions(-) diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index 46105af40cf749606533c98fd9d3d88d9363a80f..3372a20c4e8f6f78563783bfaa194867b4fe818c 100644 GIT binary patch delta 21 ccmaFE{Dyf#8<&}`p^<`tft8WL#tAWu08Z-$e*gdg delta 21 ccmaFE{Dyf#8<(lBk)?uxxs|cy#tAWu08gO?mjD0& diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index eb6656da8e4..164326af963 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 62d3ea4388691535e064736ddc934d397f98f3fe..73eae78004d93ebb97826784c2ecd4e10cb5be0d 100644 GIT binary patch delta 21 ccmZ2sx592iFE59ok%EDNm65^bsl1Z~0ZxDhmjD0& delta 21 ccmZ2sx592iFE59Ise*xlm674*sl1Z~0ZyF;ng9R* diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index b4b9a8b24d3..e62376ddfc6 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-05 00:21+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index a53ae20557f1804fe0a056a1ab1e42434dce6387..6aef55395fd8e6b49064d5e0771f972dc1017a63 100644 GIT binary patch delta 23 ecmcbteOY@$884TauAz~Ffq|8g!R7|uU=9FWNd~t7 delta 23 ecmcbteOY@$884Tqu92mJfw`5j<>m(7U=9FX7Y5G& diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index fe53ffd5e39..adeb347cda7 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 74f03c42f1ecfd7b136597d8a14e99209996eace..aac8bd79fd0dff3833547ea1ce9f2bdd71695a67 100644 GIT binary patch delta 23 fcmX@+V^ar( delta 23 fcmX@+WFZHg diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 1681a70f76e..42557bf4496 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vilibald W. , 2014-2015\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index d394b38518bdd6d118272999d2c9638c3ac91b3f..f0cdfa18f67f630d4fed9f9f3a1ea4b616b6488f 100644 GIT binary patch delta 23 ecmX?RaLi!CCO$4RT|*-U0|P4~gUx&Rx;Oz~iU(N$ delta 23 ecmX?RaLi!CCO$4xT_Z~c19K~5%guZEx;O!0SO;+c diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 5f110ca53b5..7bbfaa7a3d9 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Geraint Palmer , 2016\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 3f4dc9df3b0e5bbc4ae2c92123e80fe4f23aefdd..45344ed9638ea5543029d6ae2ecd50ead0622f1b 100644 GIT binary patch delta 23 fcmaEn_9AV=c6lx{T|*-U0|P4~gUtu!mkR>`aYP7Q delta 23 fcmaEn_9AV=c6lyST_Z~c19K~5%gqPnmkR>`auNu1 diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index ed679814f37..81ee34ddfd4 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2021\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" @@ -177,7 +177,7 @@ msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -774,21 +774,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Beskedkatalogerne er i %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "læser skabeloner ..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "skriver beskedkataloger ..." @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3027,24 +3027,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index 39079f8ea5cb3ceb61c7f23b6eb6b9aa93d64725..2d447876f6b1224129ffabac5fc6b52fc3cf772d 100644 GIT binary patch delta 21 ccmX@de2#fS8<&}`p^<`tft8WL#tC+e07?G_B>(^b delta 21 ccmX@de2#fS8<(lBk)?uxxs|cy#tC+e07|t6Jpcdz diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index b18022984a8..c7a5a8c54c2 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.mo index 76d207eee7e1116c04242c02a8026d530bf66ec5..8a51490990766cf19efefbb45b2d87e409f4ff80 100644 GIT binary patch delta 23 ecmZ3Uw>)pdRXHv*T|*-U0|P4~gU$ElJR|^VF9*s1 delta 23 ecmZ3Uw>)pdRXHwGT_Z~c19K~5%gy)YJR|^V{RiRz diff --git a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po index e77b8a7a3ba..1afd2f78d7b 100644 --- a/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_GB/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Adam Turner, 2022\n" "Language-Team: English (United Kingdom) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_GB/)\n" @@ -174,7 +174,7 @@ msgstr "config directory doesn't contain a conf.py file (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "%d source files given on command line" msgid "targets for %d source files that are out of date" msgstr "targets for %d source files that are out of date" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "building [%s]: " @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.mo index eefb9bca3010679fa3b629de604dc5c54e87b8a5..4771c413bebe7d272d606b38a0ccf7bdd9918e0a 100644 GIT binary patch delta 21 ccmeyv{D*l$8<&}`fvJLlft8Wr#tAu$08ym|vH$=8 delta 21 ccmeyv{D*l$8<(lBk)?uxxs|cy#tAu$08&8)#{d8T diff --git a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po index e3e28050128..c355ae9913d 100644 --- a/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_HK/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: English (Hong Kong) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_HK/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index a767ec63b21..93b967757a9 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -13,7 +13,7 @@ Documentation.addTranslations({ "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "Copyright": "Copyright", - "Created using Sphinx %(sphinx_version)s.": "", + "Created using Sphinx %(sphinx_version)s.": "Creado usando Sphinx %(sphinx_version)s.", "Expand sidebar": "Expandir barra lateral", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "General Index": "\u00cdndice General", @@ -37,7 +37,7 @@ Documentation.addTranslations({ "Search": "B\u00fasqueda", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda", - "Search finished, found ${resultCount} page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "B\u00fasqueda finalizada, se encontraron ${resultCount} p\u00e1ginas que coinciden con la consulta de b\u00fasqueda.", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "Searching": "Buscando", "Searching for multiple words only shows matches that contain\n all words.": "La b\u00fasqueda de varias palabras solo muestra coincidencias que contienen\n todas las palabras.", diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 43dd0396298bdfefca4c4cf1dde34fd031ea117e..cef93a96a7c76cd10b9138abaad476a47370509f 100644 GIT binary patch delta 24280 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 delta 11803 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 XKHu)@n~-H!_dSzur}+NMx7+?7WC`Sm diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 6283862ff44..74036f00c52 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -9,6 +9,7 @@ # Guillem Borrell , 2011 # Ivan García , 2019 # Leonardo J. Caballero G. , 2013-2018,2020 +# Leonardo J. Caballero G. , 2022 # Takeshi KOMIYA , 2016,2021 msgid "" msgstr "" @@ -33,7 +34,7 @@ msgstr "No se encuentra directorio fuente (%s)" #: sphinx/application.py:153 #, python-format msgid "Output directory (%s) is not a directory" -msgstr "" +msgstr "Directorio de salida (%s) no es un directorio" #: sphinx/application.py:157 msgid "Source directory and destination directory cannot be identical" @@ -147,7 +148,7 @@ msgid "" "the %s extension does not declare if it is safe for parallel reading, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" +msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" #: sphinx/application.py:1253 #, python-format @@ -181,7 +182,7 @@ msgstr "directorio de configuración no contiene un archivo conf.py (%s)" msgid "" "Invalid configuration value found: 'language = None'. Update your " "configuration to a valid language code. Falling back to 'en' (English)." -msgstr "" +msgstr "Se encontró un valor de configuración no válido: 'language = None'. Actualice su configuración a un código de idioma válido. Volviendo a definir 'en' (Inglés)." #: sphinx/config.py:201 #, python-format @@ -287,7 +288,7 @@ msgstr "primary_domain %r no fue encontrado, se ignora." msgid "" "Since v2.0, Sphinx uses \"index\" as root_doc by default. Please add " "\"root_doc = 'contents'\" to your conf.py." -msgstr "" +msgstr "Desde v2.0, Sphinx usa \"index\" como root_doc por defecto. Agregue \"root_doc = 'contents'\" a su archivo conf.py." #: sphinx/events.py:60 #, python-format @@ -302,7 +303,7 @@ msgstr "Nombre de evento desconocido: %s" #: sphinx/events.py:102 #, python-format msgid "Handler %r for event %r threw an exception" -msgstr "" +msgstr "Manipulador %r para el evento %r lanzó una excepción" #: sphinx/extension.py:44 #, python-format @@ -333,7 +334,7 @@ msgstr "No pudo el léxico literal_block como \"%s\". Destacado omitido." msgid "" "multiple files found for the document \"%s\": %r\n" "Use %r for the build." -msgstr "" +msgstr "varios archivos encontrados para el documento \"%s\": %r\nUse %r para la compilación." #: sphinx/project.py:51 msgid "document not readable. Ignored." @@ -427,7 +428,7 @@ msgstr "enumerable_node %r ya esta registrado" #: sphinx/registry.py:408 #, python-format msgid "math renderer %s is already registered" -msgstr "" +msgstr "el renderizador matemático %s ya está registrado" #: sphinx/registry.py:421 #, python-format @@ -474,12 +475,12 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/roles.py:188 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "número de PEP inválido %s" #: sphinx/roles.py:222 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "número RFC inválido %s" #: sphinx/theming.py:72 #, python-format @@ -514,7 +515,7 @@ msgstr "archivo %r o ruta del tema no es un archivo zip válido o no contiene ni #: sphinx/theming.py:236 msgid "" "sphinx_rtd_theme (< 0.3.0) found. It will not be available since Sphinx-6.0" -msgstr "" +msgstr "sphinx_rtd_theme (< 0.3.0) encontrado. No estará disponible desde Sphinx-6.0" #: sphinx/theming.py:241 #, python-format @@ -533,7 +534,7 @@ msgstr "una imagen adecuada para %s constructor no encontrado: %s" #: sphinx/builders/__init__.py:210 msgid "building [mo]: " -msgstr "compilando [mo]:" +msgstr "compilando [mo]: " #: sphinx/builders/__init__.py:211 sphinx/builders/__init__.py:548 #: sphinx/builders/__init__.py:575 @@ -543,7 +544,7 @@ msgstr "escribiendo salida... " #: sphinx/builders/__init__.py:220 #, python-format msgid "all of %d po files" -msgstr "Todos los %d archivos po" +msgstr "todos los %d archivos po" #: sphinx/builders/__init__.py:238 #, python-format @@ -583,16 +584,16 @@ msgstr "los objetivos para %d los archivos fuentes que estan desactualizados" #: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " -msgstr "compilando [%s]:" +msgstr "compilando [%s]: " #: sphinx/builders/__init__.py:305 msgid "looking for now-outdated files... " -msgstr "buscando por archivos no actualizados..." +msgstr "buscando por archivos no actualizados... " #: sphinx/builders/__init__.py:310 #, python-format msgid "%d found" -msgstr "encontrado %d" +msgstr "%d encontrado" #: sphinx/builders/__init__.py:312 msgid "none found" @@ -612,7 +613,7 @@ msgstr "no hay archivos objetivo desactualizados." #: sphinx/builders/__init__.py:366 msgid "updating environment: " -msgstr "actualizando ambiente" +msgstr "actualizando ambiente: " #: sphinx/builders/__init__.py:387 #, python-format @@ -621,7 +622,7 @@ msgstr "%sañadido, %s cambiado, %s removido" #: sphinx/builders/__init__.py:425 sphinx/builders/__init__.py:437 msgid "reading sources... " -msgstr "leyendo fuentes..." +msgstr "leyendo fuentes... " #: sphinx/builders/__init__.py:526 #, python-format @@ -640,7 +641,7 @@ msgstr "entrada de tabla de contenido duplicada encontrada: %s" #: sphinx/builders/_epub_base.py:398 sphinx/builders/html/__init__.py:746 #: sphinx/builders/latex/__init__.py:410 sphinx/builders/texinfo.py:173 msgid "copying images... " -msgstr "copiando imágenes..." +msgstr "copiando imágenes... " #: sphinx/builders/_epub_base.py:405 #, python-format @@ -660,19 +661,19 @@ msgstr "no se puede escribir archivo de imagen %r: %s" #: sphinx/builders/_epub_base.py:438 msgid "Pillow not found - copying image files" -msgstr "no se encuentra Pillow - copiando archivos de imágenes" +msgstr "Pillow no encontrada - copiando archivos de imágenes" #: sphinx/builders/_epub_base.py:464 msgid "writing mimetype file..." -msgstr "" +msgstr "escribiendo el archivo mimetype..." #: sphinx/builders/_epub_base.py:469 msgid "writing META-INF/container.xml file..." -msgstr "" +msgstr "escribiendo el archivo META-INF/container.xml..." #: sphinx/builders/_epub_base.py:497 msgid "writing content.opf file..." -msgstr "" +msgstr "escribiendo el archivo content.opf..." #: sphinx/builders/_epub_base.py:523 #, python-format @@ -681,7 +682,7 @@ msgstr "mimetype desconocido para %s, ignorando" #: sphinx/builders/_epub_base.py:670 msgid "writing toc.ncx file..." -msgstr "" +msgstr "escribiendo el archivo toc.ncx..." #: sphinx/builders/_epub_base.py:695 #, python-format @@ -712,7 +713,7 @@ msgstr "Nivel de módulo" #: sphinx/builders/changes.py:116 msgid "copying source files..." -msgstr "copiando archivos fuente" +msgstr "copiando archivos fuente..." #: sphinx/builders/changes.py:123 #, python-format @@ -730,7 +731,7 @@ msgstr "El archivo ePub está en %(outdir)s." #: sphinx/builders/epub3.py:159 msgid "writing nav.xhtml file..." -msgstr "" +msgstr "escribiendo el archivo nav.xhtml..." #: sphinx/builders/epub3.py:185 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" @@ -789,11 +790,11 @@ msgstr "objetivos para los archivos de plantillas %d" #: sphinx/builders/gettext.py:241 msgid "reading templates... " -msgstr "leyendo plantillas..." +msgstr "leyendo plantillas... " #: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " -msgstr "escribiendo catálogos de mensajes..." +msgstr "escribiendo catálogos de mensajes... " #: sphinx/builders/linkcheck.py:110 #, python-format @@ -813,7 +814,7 @@ msgstr "Ancla '%s' no encontrado" #: sphinx/builders/linkcheck.py:553 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "Error al compilar expresiones regulares en linkcheck_allowed_redirects: %r %s" #: sphinx/builders/manpage.py:30 #, python-format @@ -959,7 +960,7 @@ msgstr "escribiendo páginas adicionales" #: sphinx/builders/html/__init__.py:764 msgid "copying downloadable files... " -msgstr "copiando archivos descargables..." +msgstr "copiando archivos descargables... " #: sphinx/builders/html/__init__.py:772 #, python-format @@ -969,11 +970,11 @@ msgstr "no se puede copiar archivo descargable %r: %s" #: sphinx/builders/html/__init__.py:805 sphinx/builders/html/__init__.py:817 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "" +msgstr "Error al copiar un archivo en html_static_file: %s: %r" #: sphinx/builders/html/__init__.py:838 msgid "copying static files" -msgstr "" +msgstr "copiar archivos estáticos" #: sphinx/builders/html/__init__.py:854 #, python-format @@ -1003,7 +1004,7 @@ msgstr "no se pudo cargar el índice de búsqueda, pero no se crearán todos los #: sphinx/builders/html/__init__.py:981 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "La página %s coincide con dos patrones en html_sidebars: %r y %r" +msgstr "página %s coincide con dos patrones en html_sidebars: %r y %r" #: sphinx/builders/html/__init__.py:1074 #, python-format @@ -1017,7 +1018,7 @@ msgstr "Se produjo un error Unicode al representar la página %s. Asegúrese de msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "Ha ocurrido un error al renderizar la pagina %s. Motivo: %r" +msgstr "Ha ocurrido un error al renderizar la pagina %s.\nRazón: %r" #: sphinx/builders/html/__init__.py:1108 msgid "dumping object inventory" @@ -1076,7 +1077,7 @@ msgstr "el archivo %r usado para el favicon no existe" msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." -msgstr "" +msgstr "html_add_permalinks ha quedado en desuso desde v3.5.0. Por favor, use html_permalinks and html_permalinks_icon en cambio." #: sphinx/builders/html/__init__.py:1340 #, python-format @@ -1102,7 +1103,7 @@ msgstr "no se encontró el valor de configuración \"latex_documents\"; no se es #: sphinx/builders/latex/__init__.py:151 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "El valor de configuración \"latex_documents\" hace referencia a un documento desconocido %s" +msgstr "valor de configuración \"latex_documents\" hace referencia a un documento desconocido %s" #: sphinx/builders/latex/__init__.py:184 sphinx/domains/std.py:564 #: sphinx/templates/latex/latex.tex_t:97 @@ -1145,7 +1146,7 @@ msgstr "Clave de configuración desconocida: latex_elements[%r], ignorada." #: sphinx/builders/latex/__init__.py:453 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "" +msgstr "Opción de tema desconocida: latex_theme_options[%r], ignorado." #: sphinx/builders/latex/theming.py:83 #, python-format @@ -1167,7 +1168,7 @@ msgstr "¡Interrumpido!" #: sphinx/cmd/build.py:44 msgid "reST markup error:" -msgstr "error en marcado de reST" +msgstr "error en marcado de reST:" #: sphinx/cmd/build.py:50 msgid "Encoding error:" @@ -1189,7 +1190,7 @@ msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "Esto puede ocurrir con archivos de origen muy grandes o profundamente anidados. Puede aumentar cuidadosamente el límite de recurrencia predeterminado de Python de 1000 en el archivo conf.py con, por ej.:" #: sphinx/cmd/build.py:65 msgid "Exception occurred:" @@ -1214,7 +1215,7 @@ msgstr "número de trabajo debe ser un número positivo" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 #: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." -msgstr "" +msgstr "Para más información visite ." #: sphinx/cmd/build.py:99 msgid "" @@ -1233,7 +1234,7 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nGenerar documentación a partir de archivos fuente.\n\nsphinx-build genera documentación a partir de los archivos en SOURCEDIR y la\ncoloca en OUTPUTDIR. Busca 'conf.py' en SOURCEDIR para los ajustes de configuración.\nLa herramienta 'sphinx-quickstart' se puede usar para generar archivos de plantilla,\nincluido 'conf.py'\n\nsphinx-build puede crear documentación en diferentes formatos. Se selecciona un\nformato especificando el nombre del constructor en la línea de comando; por defecto\nes HTML. Los constructores también pueden realizar otras tareas relacionadas con\nel procesamiento de la documentación.\n\nDe forma predeterminada, se construye todo lo que está desactualizado. La salida solo\npara archivos seleccionados se puede generar especificando nombres de archivo individuales.\n" #: sphinx/cmd/build.py:120 msgid "path to documentation source files" @@ -1361,11 +1362,11 @@ msgstr "no se puede abrir el archivo de advertencia %r: %s" #: sphinx/cmd/build.py:251 msgid "-D option argument must be in the form name=value" -msgstr "El argumento de la opción -D debe estar en la forma nombre=valor" +msgstr "argumento de la opción -D debe estar en la forma nombre=valor" #: sphinx/cmd/build.py:258 msgid "-A option argument must be in the form name=value" -msgstr "El argumento de la opción -A debe estar en la forma nombre=valor" +msgstr "argumento de la opción -A debe estar en la forma nombre=valor" #: sphinx/cmd/quickstart.py:35 msgid "automatically insert docstrings from modules" @@ -1422,7 +1423,7 @@ msgstr "Por favor, ingrese uno de %s." #: sphinx/cmd/quickstart.py:116 msgid "Please enter either 'y' or 'n'." -msgstr "Por favor, ingrese cualquiera de 'y' o 'n'" +msgstr "Por favor, ingrese cualquiera de 'y' o 'n'." #: sphinx/cmd/quickstart.py:122 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." @@ -1506,7 +1507,7 @@ msgid "" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "Sphinx tiene la noción de una \"versión\" y un \"lanzamiento\" para el\nsoftware. Cada versión puede tener varios lanzamientos. Por ejemplo, para\nPython, la versión es algo así como 2.5 o 3.0, mientras que el lanzamiento es\nalgo así como 2.5.1 o 3.0a1. Si no necesita esta estructura dual, simplemente\nconfigure ambas con el mismo valor." #: sphinx/cmd/quickstart.py:256 msgid "Project version" @@ -1534,7 +1535,7 @@ msgstr "Lenguaje del proyecto" msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "El sufijo del nombre de archivo para los archivos de fuente. Comúnmente, esto es \".txt\"\no \".rst\". Solo los archivos con este sufijo se consideran documentos." #: sphinx/cmd/quickstart.py:276 msgid "Source file suffix" @@ -1586,7 +1587,7 @@ msgstr "Se puede generar un archivo Makefile y un archivo de comandos de Windows #: sphinx/cmd/quickstart.py:314 msgid "Create Makefile? (y/n)" -msgstr "Crear Makefile? (y/n)" +msgstr "¿Crear Makefile? (y/n)" #: sphinx/cmd/quickstart.py:317 msgid "Create Windows command file? (y/n)" @@ -1611,13 +1612,13 @@ msgstr "Terminado: se ha creado una estructura de directorio inicial." msgid "" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "Ahora debe completar su archivo maestro %s y crear otros archivos fuente\nde documentación." +msgstr "Ahora debe completar su archivo maestro %s y crear otros archivos fuente\nde documentación. " #: sphinx/cmd/quickstart.py:412 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder" -msgstr "Use el archivo Makefile para compilar los documentos, así ejecute el comando:\n    make builder" +msgstr "Use el archivo Makefile para compilar los documentos, así ejecute el comando:\n make builder" #: sphinx/cmd/quickstart.py:415 #, python-format @@ -1660,7 +1661,7 @@ msgstr "si se especifica, separe los directorios de fuentes y de compilación" #: sphinx/cmd/quickstart.py:478 msgid "if specified, create build dir under source dir" -msgstr "" +msgstr "si se especifica, cree un directorio de compilación en el directorio de origen" #: sphinx/cmd/quickstart.py:480 msgid "replacement for dot in _templates etc." @@ -1777,7 +1778,7 @@ msgstr "Variable de plantilla inválida: %s" #: sphinx/directives/code.py:56 msgid "non-whitespace stripped by dedent" -msgstr "" +msgstr "no espacios en blanco eliminados por identado" #: sphinx/directives/code.py:75 #, python-format @@ -1824,7 +1825,7 @@ msgstr "Línea especifico %r: sin líneas tiradas desde el archivo incluido %r" #: sphinx/directives/other.py:102 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "patrón global toctree %r no coincide con ningún documento" #: sphinx/directives/other.py:123 sphinx/environment/adapters/toctree.py:168 #, python-format @@ -1839,7 +1840,7 @@ msgstr "toctree contiene referencias a documentos inexistentes %r" #: sphinx/directives/other.py:136 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "entrada duplicada encontrada en toctree: %s" #: sphinx/directives/other.py:168 msgid "Section author: " @@ -1859,17 +1860,17 @@ msgstr "Autor: " #: sphinx/directives/other.py:246 msgid ".. acks content is not a list" -msgstr "" +msgstr ".. contenido de los reconocimientos no es una lista" #: sphinx/directives/other.py:271 msgid ".. hlist content is not a list" -msgstr "" +msgstr ".. hlist contenido no es una lista" #: sphinx/directives/patches.py:109 msgid "" "\":file:\" option for csv-table directive now recognizes an absolute path as" " a relative path from source directory. Please update your document." -msgstr "" +msgstr "\":file:\" La opción para la directiva csv-table ahora reconoce una ruta absoluta como una ruta relativa desde el directorio de origen. Actualice su documento." #: sphinx/domains/__init__.py:389 #, python-format @@ -1881,12 +1882,12 @@ msgstr "%s %s" msgid "" "Duplicate C declaration, also defined at %s:%s.\n" "Declaration is '.. c:%s:: %s'." -msgstr "" +msgstr "Declaración de C duplicada, también definida en %s:%s.\nLa declaración es '.. c:%s:: %s'." #: sphinx/domains/c.py:3226 #, python-format msgid "%s (C %s)" -msgstr "" +msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 #: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 @@ -1895,7 +1896,7 @@ msgstr "Parámetros" #: sphinx/domains/c.py:3350 sphinx/domains/cpp.py:7326 msgid "Return values" -msgstr "" +msgstr "Valores devueltos" #: sphinx/domains/c.py:3353 sphinx/domains/cpp.py:7329 #: sphinx/domains/javascript.py:216 sphinx/domains/python.py:445 @@ -1926,7 +1927,7 @@ msgstr "macro" #: sphinx/domains/c.py:3754 msgid "struct" -msgstr "" +msgstr "estructura" #: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 msgid "union" @@ -1946,7 +1947,7 @@ msgstr "tipo" #: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 msgid "function parameter" -msgstr "" +msgstr "parámetro de función" #: sphinx/domains/changeset.py:20 #, python-format @@ -1978,7 +1979,7 @@ msgstr "Citación [%s] no está referenciada." msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." -msgstr "" +msgstr "Declaración de C++ duplicada, también definida en %s:%s.\nLa declaración es '.. cpp:%s:: %s'." #: sphinx/domains/cpp.py:7081 msgid "Template Parameters" @@ -2004,7 +2005,7 @@ msgstr "concepto" #: sphinx/domains/cpp.py:7741 msgid "template parameter" -msgstr "" +msgstr "parámetro de plantilla" #: sphinx/domains/javascript.py:131 #, python-format @@ -2138,7 +2139,7 @@ msgstr "%s() (método de clase de %s)" #: sphinx/domains/python.py:820 sphinx/domains/python.py:960 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%s (%s propiedad)" #: sphinx/domains/python.py:822 #, python-format @@ -2167,7 +2168,7 @@ msgstr "método estático" #: sphinx/domains/python.py:1163 msgid "property" -msgstr "" +msgstr "propiedad" #: sphinx/domains/python.py:1221 #, python-format @@ -2232,7 +2233,7 @@ msgstr "Descripción de la opción con formato incorrecto %r, debe verse como \" #: sphinx/domains/std.py:218 #, python-format msgid "%s command line option" -msgstr "%sopción de línea de comando " +msgstr "opción de línea de comando %s" #: sphinx/domains/std.py:220 msgid "command line option" @@ -2300,7 +2301,7 @@ msgstr "numfig está deshabilitado. :numref: se ignora." #: sphinx/domains/std.py:833 #, python-format msgid "Failed to create a cross reference. Any number is not assigned: %s" -msgstr "" +msgstr "Error al crear una referencia cruzada. No se asigna ningún número: %s" #: sphinx/domains/std.py:845 #, python-format @@ -2320,12 +2321,12 @@ msgstr "inválido numfig_format: %s" #: sphinx/domains/std.py:1075 #, python-format msgid "undefined label: %s" -msgstr "" +msgstr "etiqueta indefinida: %s" #: sphinx/domains/std.py:1077 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" -msgstr "" +msgstr "Error al crear una referencia cruzada. Un título o subtítulo no encontrado: %s" #: sphinx/environment/__init__.py:71 msgid "new config" @@ -2406,7 +2407,7 @@ msgstr "toctree contiene una referencia al documento %r que no tiene título: no #: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" -msgstr "archivo de imagen no legible:%s" +msgstr "archivo de imagen no legible: %s" #: sphinx/environment/collectors/asset.py:99 #, python-format @@ -2491,7 +2492,7 @@ msgstr "no crear un archivo de tabla de contenido" msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "no cree encabezados para los paquetes de módulos/paquetes (por ejemplo, cuando las cadenas de documentación \"docstrings\" ya los contienen)" +msgstr "no cree encabezados para los paquetes de módulos/paquetes (por ejemplo, cuando las cadenas de documentación docstrings ya los contienen)" #: sphinx/ext/apidoc.py:356 msgid "put module documentation before submodule documentation" @@ -2560,7 +2561,7 @@ msgstr "expresiones regulares inválidas %r en coverage_c_regexes" #: sphinx/ext/coverage.py:122 #, python-format msgid "undocumented c api: %s [%s] in file %s" -msgstr "" +msgstr "api c indocumentado: %s [%s] en archivo %s" #: sphinx/ext/coverage.py:154 #, python-format @@ -2570,17 +2571,17 @@ msgstr "el módulo %s no podía ser importado: %s" #: sphinx/ext/coverage.py:250 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "" +msgstr "función python indocumentada: %s :: %s" #: sphinx/ext/coverage.py:266 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "" +msgstr "clase python indocumentada: %s :: %s" #: sphinx/ext/coverage.py:279 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "" +msgstr "método python indocumentado: %s :: %s :: %s" #: sphinx/ext/doctest.py:117 #, python-format @@ -2627,21 +2628,21 @@ msgstr "====================== duraciones de lectura más lentas =============== #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "enlace codificado %r podría reemplazarse por un enlace externo (intente usar %r en su lugar)" #: sphinx/ext/extlinks.py:96 #, python-format msgid "" "extlinks: Sphinx-6.0 will require base URL to contain exactly one '%s' and " "all other '%' need to be escaped as '%%'." -msgstr "" +msgstr "extlinks: Sphinx-6.0 requerirá que la URL base contenga exactamente uno '%s' y todos los demás '%' hay que escapar como '%%'." #: sphinx/ext/extlinks.py:104 #, python-format msgid "" "extlinks: Sphinx-6.0 will require a caption string to contain exactly one " "'%s' and all other '%' need to be escaped as '%%'." -msgstr "" +msgstr "extlinks: Sphinx-6.0 requerirá una cadena de subtítulos para contener exactamente uno '%s' y todos los demás '%' hay que escapar como '%%'." #: sphinx/ext/graphviz.py:124 msgid "Graphviz directive cannot have both content and a filename argument" @@ -2709,7 +2710,7 @@ msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" "\n" "Traceback: %s" -msgstr "" +msgstr "No se puede ejecutar el comando de conversión de imagen %r. 'sphinx.ext.imgconverter' requiere ImageMagick por defecto. Asegúrese de que esté instalado o configure la opción 'image_converter' a un comando de conversión personalizado.\n\nRastrear: %s" #: sphinx/ext/imgconverter.py:42 sphinx/ext/imgconverter.py:66 #, python-format @@ -2724,7 +2725,7 @@ msgstr "convert salió con error:\n[stderr]\n%r\n[stdout]\n%r" #: sphinx/ext/imgconverter.py:61 #, python-format msgid "convert command %r cannot be run, check the image_converter setting" -msgstr "el comando convert %r no puede ejecutar, compruebe el valor de configuración image_converter" +msgstr "el comando convert %r no puede ejecutar, compruebe el valor de configuración image_converter" #: sphinx/ext/imgmath.py:133 #, python-format @@ -2738,7 +2739,7 @@ msgstr "comando LaTeX %r no se puede ejecutar (necesario para la visualización msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "El comando%s %r no se puede ejecutar (necesario para la visualización matemática), verifique la configuración imgmath_%s" +msgstr "comando %s %r no se puede ejecutar (necesario para la visualización matemática), verifique la configuración imgmath_%s" #: sphinx/ext/imgmath.py:292 #, python-format @@ -2787,17 +2788,17 @@ msgstr "(en %s)" #: sphinx/ext/intersphinx.py:494 #, python-format msgid "inventory for external cross-reference not found: %s" -msgstr "" +msgstr "inventario para referencia cruzada externa no encontrado: %s" #: sphinx/ext/intersphinx.py:500 #, python-format msgid "role for external cross-reference not found: %s" -msgstr "" +msgstr "rol para referencia cruzada externa no encontrado: %s" #: sphinx/ext/intersphinx.py:587 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "" +msgstr "%s externo: destino de referencia %s no encontrado: %s" #: sphinx/ext/intersphinx.py:612 #, python-format @@ -2829,7 +2830,7 @@ msgstr "<>" #: sphinx/ext/todo.py:155 #, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(La <> se encuentra en %s, línea %d.)" +msgstr "(La <> se encuentra en %s, línea %d.)" #: sphinx/ext/todo.py:165 msgid "original entry" @@ -2837,7 +2838,7 @@ msgstr "entrada original" #: sphinx/ext/viewcode.py:235 msgid "highlighting module code... " -msgstr "resaltando el código del módulo..." +msgstr "resaltando el código del módulo... " #: sphinx/ext/viewcode.py:267 msgid "[docs]" @@ -2863,12 +2864,12 @@ msgstr "

Todos los módulos para los cuales disponen código

" #: sphinx/ext/autodoc/__init__.py:120 #, python-format msgid "invalid value for member-order option: %s" -msgstr "" +msgstr "valor no válido para la opción de pedido de miembro: %s" #: sphinx/ext/autodoc/__init__.py:128 #, python-format msgid "invalid value for class-doc-from option: %s" -msgstr "" +msgstr "valor no válido para la opción class-doc-from: %s" #: sphinx/ext/autodoc/__init__.py:376 #, python-format @@ -2890,7 +2891,7 @@ msgstr "falta el atributo %s en el objeto %s" msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: no pudo determinar %s.%s (%r) para ser documentado, se planteó la siguiente excepción:\n%s" #: sphinx/ext/autodoc/__init__.py:877 #, python-format @@ -2903,12 +2904,12 @@ msgstr "no sabe qué módulo importar para el autodocumento %r (intente colocar #: sphinx/ext/autodoc/__init__.py:921 #, python-format msgid "A mocked object is detected: %r" -msgstr "" +msgstr "Se detecta un objeto simulado: %r" #: sphinx/ext/autodoc/__init__.py:940 #, python-format msgid "error while formatting signature for %s: %s" -msgstr "" +msgstr "error al formatear la firma para %s: %s" #: sphinx/ext/autodoc/__init__.py:991 msgid "\"::\" in automodule name doesn't make sense" @@ -2930,18 +2931,18 @@ msgstr "__all__ debe ser una lista de cadenas, no %r (en el módulo %s) -- ignor #, python-format msgid "" "missing attribute mentioned in :members: option: module %s, attribute %s" -msgstr "" +msgstr "atributo faltante mencionado en la :members: módulo %s, atributo %s" #: sphinx/ext/autodoc/__init__.py:1278 sphinx/ext/autodoc/__init__.py:1355 #: sphinx/ext/autodoc/__init__.py:2763 #, python-format msgid "Failed to get a function signature for %s: %s" -msgstr "" +msgstr "Error al obtener una firma de función para %s: %s" #: sphinx/ext/autodoc/__init__.py:1548 #, python-format msgid "Failed to get a constructor signature for %s: %s" -msgstr "" +msgstr "Error al obtener una firma de constructor para %s: %s" #: sphinx/ext/autodoc/__init__.py:1670 #, python-format @@ -2952,32 +2953,32 @@ msgstr "Bases: %s" #: sphinx/ext/autodoc/__init__.py:1871 #, python-format msgid "alias of %s" -msgstr "" +msgstr "alias de %s" #: sphinx/ext/autodoc/__init__.py:1915 #, python-format msgid "alias of TypeVar(%s)" -msgstr "" +msgstr "alias de TypeVar(%s)" #: sphinx/ext/autodoc/__init__.py:2154 sphinx/ext/autodoc/__init__.py:2251 #, python-format msgid "Failed to get a method signature for %s: %s" -msgstr "" +msgstr "Error al obtener una firma de método para %s: %s" #: sphinx/ext/autodoc/__init__.py:2382 #, python-format msgid "Invalid __slots__ found on %s. Ignored." -msgstr "" +msgstr "Se encontraron __slots__ no válidas en %s. Ignorado." #: sphinx/ext/autodoc/preserve_defaults.py:116 #, python-format msgid "Failed to parse a default argument value for %r: %s" -msgstr "" +msgstr "Error al analizar un valor de argumento predeterminado para %r: %s" #: sphinx/ext/autodoc/type_comment.py:122 #, python-format msgid "Failed to update signature for %r: parameter not found: %s" -msgstr "" +msgstr "Error al actualizar la firma para %r: parámetro no encontrado: %s" #: sphinx/ext/autodoc/type_comment.py:125 #, python-format @@ -2998,7 +2999,7 @@ msgstr "autosummary: no se encontró el archivo stub %r. Verifique su configurac #: sphinx/ext/autosummary/__init__.py:268 msgid "A captioned autosummary requires :toctree: option. ignored." -msgstr "" +msgstr "Un resumen automático con subtítulos requiere la opción :toctree: ignorado." #: sphinx/ext/autosummary/__init__.py:319 #, python-format @@ -3006,7 +3007,7 @@ msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary: no se pudo importar %s.\nPosibles pistas:\n%s" #: sphinx/ext/autosummary/__init__.py:333 #, python-format @@ -3053,7 +3054,7 @@ msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] no se pudo importar %s.\nPosibles pistas:\n%s" #: sphinx/ext/autosummary/generate.py:578 msgid "" @@ -3098,7 +3099,7 @@ msgstr "documento importados miembros (predeterminado: %(default)s)" msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "documentar exactamente los miembros en module __all__ attribute. (por defecto: %(default)s)" #: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 msgid "Keyword Arguments" @@ -3122,7 +3123,7 @@ msgstr "Otros parámetros" #: sphinx/ext/napoleon/docstring.py:754 msgid "Receives" -msgstr "" +msgstr "Recibe" #: sphinx/ext/napoleon/docstring.py:758 msgid "References" @@ -3139,22 +3140,22 @@ msgstr "Campos" #: sphinx/ext/napoleon/docstring.py:964 #, python-format msgid "invalid value set (missing closing brace): %s" -msgstr "" +msgstr "conjunto de valores no válidos (falta la llave de cierre): %s" #: sphinx/ext/napoleon/docstring.py:971 #, python-format msgid "invalid value set (missing opening brace): %s" -msgstr "" +msgstr "conjunto de valor no válido (falta llave de apertura): %s" #: sphinx/ext/napoleon/docstring.py:978 #, python-format msgid "malformed string literal (missing closing quote): %s" -msgstr "" +msgstr "literal de cadena con formato incorrecto (falta la comilla de cierre): %s" #: sphinx/ext/napoleon/docstring.py:985 #, python-format msgid "malformed string literal (missing opening quote): %s" -msgstr "" +msgstr "literal de cadena con formato incorrecto (falta la comilla de apertura): %s" #: sphinx/locale/__init__.py:244 msgid "Attention" @@ -3337,7 +3338,7 @@ msgstr "Actualizado por última vez en %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr "Creado usando Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -3431,7 +3432,7 @@ msgstr "Ocultar coincidencias de la búsqueda" #: sphinx/themes/basic/static/searchtools.js:112 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "Búsqueda finalizada, se encontraron ${resultCount} páginas que coinciden con la consulta de búsqueda." #: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" @@ -3501,7 +3502,7 @@ msgstr "referencias de término inconsistentes en el mensaje traducido. original msgid "" "Could not determine the fallback text for the cross-reference. Might be a " "bug." -msgstr "" +msgstr "No se pudo determinar el texto alternativo para la referencia cruzada. Podría ser un error." #: sphinx/transforms/post_transforms/__init__.py:150 #, python-format @@ -3511,12 +3512,12 @@ msgstr "más de un objetivo destino encontrado para 'cualquier' referencia cruza #: sphinx/transforms/post_transforms/__init__.py:198 #, python-format msgid "%s:%s reference target not found: %s" -msgstr "" +msgstr "%s:%s objetivo de referencia no encontrado: %s" #: sphinx/transforms/post_transforms/__init__.py:201 #, python-format msgid "%r reference target not found: %s" -msgstr "" +msgstr "%r objetivo de referencia no encontrado: %s" #: sphinx/transforms/post_transforms/images.py:75 #, python-format @@ -3551,12 +3552,12 @@ msgstr "fallado" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "Problema en el dominio %s: se supone que el campo debe usar el rol '%s', pero ese rol no está en el dominio." #: sphinx/util/docutils.py:256 #, python-format msgid "unknown directive or role name: %s:%s" -msgstr "" +msgstr "directiva desconocida o nombre de rol: %s:%s" #: sphinx/util/docutils.py:549 #, python-format @@ -3576,7 +3577,7 @@ msgstr "escribiendo error: %s, %s" #: sphinx/util/i18n.py:92 #, python-format msgid "locale_dir %s does not exists" -msgstr "" +msgstr "locale_dir %s no existe" #: sphinx/util/i18n.py:188 #, python-format @@ -3617,12 +3618,12 @@ msgstr "Cualquier ID no asignado para el nodo %s" #: sphinx/writers/html.py:405 sphinx/writers/html5.py:364 msgid "Permalink to this term" -msgstr "" +msgstr "Enlace permanente a este término" #: sphinx/writers/html.py:428 sphinx/writers/html.py:433 #: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 msgid "Permalink to this heading" -msgstr "" +msgstr "Enlace permanente a este encabezado" #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" @@ -3655,7 +3656,7 @@ msgstr "demasiado grande :maxdepth:, ignorado." #: sphinx/writers/latex.py:596 msgid "document title is not a single Text node" -msgstr "El título del documento no es un nodo de texto único" +msgstr "título del documento no es un nodo de Texto único" #: sphinx/writers/latex.py:628 sphinx/writers/texinfo.py:614 msgid "" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 38e8c7a60a2810ddfe81e3566d19594f32a8530d..e582e68302840f1b4fc456ec50b6e2e12719ba10 100644 GIT binary patch delta 25 hcmaFc&h)mOX~Pq5E;C(2BLxEkDm42O9caSD`U&e@4Ww;0|13C3Gx5{ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 6bd90d529ef..ef3c4b5315c 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Ivar Smolin , 2013-2022\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" @@ -177,7 +177,7 @@ msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "%d lähtefaili sihtfailid on aegunud" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "ehitamine [%s]: " @@ -774,21 +774,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "vigane css_file: %r, eiratakse" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Sõnumikataloogid asuvad kataloogis %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "%d mallifaili sihtfailid" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "mallide lugemine... " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "sõnumikataloogide kirjutamine... " @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3027,24 +3027,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] automaatkokkuvõtte genereerimine failile: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] kirjutamine kataloogi %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "lähtefailid, mille kohta rST-faile genereerida" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "väljundfailide kataloog" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 8af2cbe8224c56414e4b2e1dd9e9a107e95b249b..fe4835584d006a3b2c7dec941d5f9f22390849da 100644 GIT binary patch delta 23 ecmX?Za@=HtngExXu7Rn7fq|8g;bsE?aV`K, 2018\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index d312576873e1153a3228f1d2f41f22c21011d151..c37e931efe71d98d7f3b85297b15f24ba96e6ee9 100644 GIT binary patch delta 23 ecmaDL_CRdIDK;)MT?11E0|P4~!_8ONdRPErN(XrW delta 23 ecmaDL_CRdIDK;)sT_Z~c19K~5%gtBVdRPEr`v;By diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index cb5082cf637..2ac6589354d 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2009\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index b47a5481adb2431dbc30779aea51c314bd5e6988..957c8256b39c7d1db1de5f7f75376885bbb35c5e 100644 GIT binary patch delta 25 hcmbO|m38)1)(uBjbD8NH8YvhUSQ!~?KEL|RJOF(l3Jw4O delta 25 hcmbO|m38)1)(uBjbD8QISt=NqTNzt!KEL|RJOF*}3MK#m diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 73b60974892..c9e1cc0a5af 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -34,7 +34,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Jean-François B. , 2017-2019,2022\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" @@ -200,7 +200,7 @@ msgstr "Le dossier de configuration ne contient pas de fichier conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -600,7 +600,7 @@ msgstr "%d fichiers source saisis en ligne de commande" msgid "targets for %d source files that are out of date" msgstr "cibles périmées pour les fichiers sources %d" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "Construction [%s] : " @@ -797,21 +797,21 @@ msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour E msgid "invalid css_file: %r, ignored" msgstr "fichier CSS invalide : %r, le fichier sera ignoré" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "La liste des messages se trouve dans %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "cibles pour les modèles de fichiers %d" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "lecture des gabarits... " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "écriture des catalogues de messages... " @@ -1232,7 +1232,7 @@ msgid "job number should be a positive number" msgstr "Le numéro du job doit être strictement positif" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "Pour plus d'informations, visitez le site ." @@ -3050,24 +3050,24 @@ msgid "" msgstr "autosummary engendre les fichiers .rst de manière interne. Mais votre source_suffix ne contient pas .rst. Ignoré." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary : impossible de déterminer si %r est documenté; l'exception suivante a été levée :\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] engendrement d’un auto-sommaire pour : %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] écriture dans %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3075,7 +3075,7 @@ msgid "" "%s" msgstr "[autosummary] échec de l'importation de %s.\nIndications possibles :\n%s" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3090,30 +3090,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nEngendre du ReStructuredText par les directives autosummary.\n\nsphinx-autogen est une interface à sphinx.ext.autosummary.generate. Il\nengendre les fichiers reStructuredText à partir des directives autosummary\ncontenues dans les fichiers donnés en entrée.\n\nLe format de la directive autosummary est documentée dans le module\nPython \"sphinx.ext.autosummary\" et peut être lu via : ::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "fichiers sources pour lesquels il faut produire des fichiers rST" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "extension par défaut pour les fichiers (par défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "répertoire des templates spécifiques (par défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "membres importés du document (défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 2bb9fb9e3ce1e08b207e6620eb7cbdfa75f5f854..ec492588a8bdcea24d8fe057259a4b7e821e7c0b 100644 GIT binary patch delta 21 ccmZ3@vYKT=8<&}`fvJLlft8Wr#tE|-0Y!lZK>z>% delta 21 ccmZ3@vYKT=8<(lBk)?uxxs|cy#tE|-0Y)7LRsaA1 diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index cd79292d458..a77d758bca3 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index faf1597c96ac0507a00e2ff4e4a162fae26da7d2..423140f041c5279304e1324de73dbcc591d24e14 100644 GIT binary patch delta 23 fcmcbtc3Ex1bS^G4T?11E0|P4~!_5o1HgNy|UhD@; delta 23 fcmcbtc3Ex1bS^GaT_Z~c19K~5%gqb9HgNy|U!4bF diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 64bd3d82aae..820ec15a84b 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FIRST AUTHOR , 2011\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index e2bd0c795e3894efaecfae7d1776c6f1cf97cb62..5739cc7c0f99de8b9d7592fde7360a5cf3dcac39 100644 GIT binary patch delta 25 gcmdni!nUo2Z9{qomzl1Cse*xlm674*!j7Xq0d(C7c>n+a delta 25 gcmdni!nUo2Z9{qom#MCirGkOEm9gdK!j7Xq0d, 2020\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" @@ -177,7 +177,7 @@ msgstr "विन्यास निर्देशिका में कोन #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "%d स्रोत फाइलें आदेश स्थान म msgid "targets for %d source files that are out of date" msgstr "%d फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "निर्माणाधीन [%s]: " @@ -774,21 +774,21 @@ msgstr "ई-पब3 के लिए विन्यास मान \"version\" msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "सन्देश सूचीपत्र %(outdir)s में हैं." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "%d नमूना फाइलों के लक्ष्य" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "नमूनों को पढ़ा जा रहा है..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "सन्देश सूचीपत्रों को लिखा जा रहा है..." @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3027,24 +3027,24 @@ msgid "" msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[ऑटोसमरी] %s पर लिख रहा है" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nस्वतः सारांश #autosummary# निर्देश का प्रयोग करते हुए पुर्नसरंचितपाठ बनाता है.\n\nस्फिंक्स-ऑटोजेन स्फिंक्स.एक्स्ट.ऑटोसमरी.जेनेरेट का मुखड़ा है.\nयह प्रदत्त फाइलों में सम्मिलित ऑटो समरी निर्देशों के अनुसार पुर्नसरंचितपाठ बनाता है\n\nस्वतः सारांश #autosummary# निर्देश का प्रारूप स्फिंक्स.एक्स्ट.ऑटोसमरी \nपाइथन प्रभाग में निबंधित है और इसे आप निम्नलिखित माध्यम से पढ़ सकते हैं:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "सभी परिणाम रखने के लिए निर्देशिका" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 15780cd4c4d69b142b6184c1b0994902cda38e00..21ad41ce8f06b120d4a340f78b92daee0f18ae8b 100644 GIT binary patch delta 21 ccmeyy{Ec}+8<&}`fvJLlft8Wr#tCVR08pt0pa1{> delta 21 ccmeyy{Ec}+8<(lBk)?uxxs|cy#tCVR08vE-wEzGB diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index 6301460fe92..ba99ab23747 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 433291e0e0e18a9554f4dd3ec9978821af21e43e..5933bc6dafae20c40ab7b61b24a60b41a60b591a 100644 GIT binary patch delta 25 gcmZ45#<;YNal>YHE;C&NQw0M9D;M1& delta 25 gcmZ45#<;YNal>YHE>m42O9caSD`U&ed(|_f0dGzS0RR91 diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 82a1a8a118d..da621266fdb 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Mario Šarić, 2015-2020\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" @@ -174,7 +174,7 @@ msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index ac526ee825064ce36703d177eee99a16e5f512c0..36f63202335674ab47fdc5e76391281c71e17951 100644 GIT binary patch delta 23 ecmeB;>W$jqD#c}{YhbEiU|?lrxY=K7pAZ05!Unkj delta 23 ecmeB;>W$jqD#c~0Yhx!GT8pAZ06a|X@; diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 608a28e9f2c..6a6b41253a4 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Balázs Úr, 2020\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -179,7 +179,7 @@ msgstr "a beállítási könyvtár nem tartalmaz conf.py fájlt (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -579,7 +579,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -776,21 +776,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1211,7 +1211,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3029,24 +3029,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3054,7 +3054,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3069,30 +3069,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 744af718a169a154cd854fc674bb516074530709..cfae32141ee05e96e870e717861a1339b2eedd8e 100644 GIT binary patch delta 25 gcmex+i}~*@<_(N(TxPlkrV0iIRz`-Kx!a1;0ft`)_y7O^ delta 25 gcmex+i}~*@<_(N(T&B84mI?;uR>qc_x!a1;0f!I?4FCWD diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 923d9c9cd72..01c65818086 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: oon arfiandwi , 2019-2020\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -178,7 +178,7 @@ msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -578,7 +578,7 @@ msgstr "%d berkas sumber diberikan di command line" msgid "targets for %d source files that are out of date" msgstr "target untuk %d berkas sumber yang telah usang" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "membangun [%s]: " @@ -775,21 +775,21 @@ msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalog pesan berada di %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "target untuk %d berkas templat" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "membaca templat... " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "menulis katalog pesan... " @@ -1210,7 +1210,7 @@ msgid "job number should be a positive number" msgstr "job number seharusnya sebuah bilangan positif" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3028,24 +3028,24 @@ msgid "" msgstr "autosummary menghasilkan file .rst secara internal. Tapi source_suffix Anda tidak mengandung .rst. Dilewati." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] menghasilkan autosummary untuk: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] menulis ke %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3053,7 +3053,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3068,30 +3068,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nHasilkan ReStructuredText menggunakan pengarahan autosummary.\n\nsphinx-autogen adalah tampilan depan ke sphinx.ext.autosummary.generate. Ini menghasilkan \nfile reStructuredText dari pengarahan autosummary yang terkandung dalam \nfile input yang diberikan.\n\nFormat pengarahan autosummary didokumentasikan dalam \nmodul ``sphinx.ext.autosummary`` dan dapat dibaca menggunakan::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "berkas sumber untuk menghasilkan file rST untuk" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "direktori untuk menempatkan semua keluaran dalam" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "akhiran bawaan untuk berkas (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "direktori templat ubahsuai (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "mendokumentasikan anggota yang diimpor (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/is/LC_MESSAGES/sphinx.mo b/sphinx/locale/is/LC_MESSAGES/sphinx.mo index 8305835c3c726c6b2966df9842b0c104eb697b0d..a09ccefcb80072014346fe95625e6992ed3405b7 100644 GIT binary patch delta 23 ecmeB@=#tp*myOFz*U(78z`)ALU^6>AGb;d74F#, 2021\n" "Language-Team: Icelandic (http://www.transifex.com/sphinx-doc/sphinx-1/language/is/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 2e577e0f2167b960c24fcf139aa2a4ed670a4166..cb9d322b78a5ee42c9e649c32e139d0fedb432fe 100644 GIT binary patch delta 25 hcmZpf#o989b%X0dE;C&NQw0M9Dm42O9caSD`U&e{tLIR1^{lY2;=|& diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 571eb248f2c..f922878a1b8 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -24,7 +24,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016-2017,2019,2022\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -190,7 +190,7 @@ msgstr "conf.py が設定ディレクトリに存在しません (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -590,7 +590,7 @@ msgstr "コマンドラインで指定された%d件のソースファイル" msgid "targets for %d source files that are out of date" msgstr "更新された %d 件のソースファイル" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "ビルド中 [%s]: " @@ -787,21 +787,21 @@ msgstr "EPUB3出力では設定値 \"version\" が必要です" msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "メッセージカタログは%(outdir)sにあります。" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "指定された %d 件のテンプレートファイル" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "テンプレートの読み込み中..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "メッセージカタログを出力中... " @@ -1222,7 +1222,7 @@ msgid "job number should be a positive number" msgstr "ジョブ番号は正数でなければなりません" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "詳しくは、を見てください。" @@ -3040,24 +3040,24 @@ msgid "" msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] %s の autosummary を生成中" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s に書き込み中" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3065,7 +3065,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3080,30 +3080,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary ディレクティブを使って ReStructuredText を生成します。\n\nsphinx-autogen は sphinx.ext.autosummary.generate のフロントエンドです。\n入力されたファイルを含む autosummary ディレクティブから reStructuredText ファイルを\n生成します。\n\nautosummary ディレクティブのフォーマットは\n``sphinx.ext.autosummary`` に記載されています。Pythonモジュールと :: を使って読むことができます。\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "rST ファイルを生成するためのソースファイル" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index f1ecc115f3d64a577bfeaacc0b3d8d940b18418f..200c37c07c4c094451a2d46f115de4679e2f3657 100644 GIT binary patch delta 33 pcmex7llAjV)(x=%Or?pN;{%??aGB{Em?{_;SQ!~^_FKDjJ^<&v4BP+! delta 33 pcmex7llAjV)(x=%Oo^qN;{%??aGB~FSt=NqTNzt!_FKDjJ^<)i4DkQ} diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 8194294f117..c5b47d2f0cb 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: YT H , 2019-2022\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -175,7 +175,7 @@ msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "잘못된 구성 값을 찾았습니다: 'language = None'. 유효한 언어 코드로 구성을 업데이트하십시오. 대신 'en'(영어)을 사용합니다." #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "명령줄에 지정된 %d 개의 원본 파일" msgid "targets for %d source files that are out of date" msgstr "오래된 %d 개의 원본 파일 대상" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "빌드 중 [%s]: " @@ -772,21 +772,21 @@ msgstr "설정값 \"version\"은 EPUB3의 경우 비워 둘 수 없습니다" msgid "invalid css_file: %r, ignored" msgstr "잘못된 css_file: %r, 무시합니다" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "메시지 카탈로그는 %(outdir)s에 있습니다." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "%d 개의 템플릿 파일 대상" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "템플릿을 읽는 중… " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "메시지 카탈로그 작성 중… " @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "작업 숫자는 양수여야 합니다" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "자세한 내용은 를 참조하십시오." @@ -3025,24 +3025,24 @@ msgid "" msgstr "autosummary는 내부적으로 .rst 파일을 생성합니다. 하지만 source_suffix에 .rst가 포함되어 있지 않습니다. 건너뜁니다." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: 문서화 할 %r을(를) 결정하지 못했으며, 다음 예외가 발생했습니다:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 자동 요약 생성: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s에 기록" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "[autosummary] %s을(를) import 하지 못했습니다.\n가능한 힌트:\n%s" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary 지시문을 사용하여 ReStructuredText를 생성합니다.\n\nsphinx-autogen은 sphinx.ext.autosummary.generate의 프런트엔드입니다.\n주어진 입력 파일에 포함된 autosummary 지시문에서 reStructuredText 파일을 생성합니다.\n\nautosummary 지시문의 형식은 ``sphinx.ext.autosummary`` Python 모듈에 문서화되어 있으며 다음 명령을 사용하여 읽을 수 있습니다.\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "rST 파일을 생성할 원본 파일" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "모든 출력을 저장할 디렉토리" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "파일의 기본 확장자 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "사용자 정의 템플릿 디렉토리 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "가져온 멤버 문서화 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 0e3ff957e5cb41a2cd1851c2a661b9ea316ab473..13bc70a5b3c896ee822f17a8faa2afe5030babc8 100644 GIT binary patch delta 23 ecmX?Le!zUgWC1QST?11E0|P4~!_9LAl(_+2cLu)z delta 23 ecmX?Le!zUgWC1QyT_Z~c19K~5%gu8Il(_+3C, 2010\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index fb170e6df04d5e8dd2947d824ded3301d1cb4b15..6de3551dd88c54335c4b3b1b3e3d38a1b373ba3e 100644 GIT binary patch delta 23 ecmZoNZ8F_pFTiD{YiOikU|?lru-Q|x!F^|k_!M#9|gex diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 4af2ff3ca95..fd77d6bff25 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 684a3bff8b9de4335d3003a7b8632ac191491395..0eb36b8d5cab0af511fbceef5c79df9622810669 100644 GIT binary patch delta 23 fcmcc3f17{9b!ILzT?11E0|P4~!_5zwe=!39Vg(1{ delta 23 fcmcc3f17{9b!IM8T_Z~c19K~5%gqm&e=!39VzvkO diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 435ed238e87..56d7cae4980 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vasil Vangelovski , 2013\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 6345467075957036681ee0f6c0bba39d67bde579..d28fb1fe74cddd3f0f353d4aa3bd6852f8114148 100644 GIT binary patch delta 23 ecmaE7^3G(#D*-MuT|*-U0|P4~gUw$AsyG2`>IfA8 delta 23 ecmaE7^3G(#D*-N3T_Z~c19K~5%gtW|syG2{xCku( diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index b39a85ee8be..4948630a42f 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 6f787e9b652ea7e71550996ad64fa30857384ee4..3ba0261e9669b33baaf63a021ffdd2024a4fee0b 100644 GIT binary patch delta 23 ecmZ4Ly3}>UOaU%4T|*-U0|P4~gUyQtn1ldZO9qqx delta 23 ecmZ4Ly3}>UOaU%aT_Z~c19K~5%gu`gn1lda83wEX diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index e7b7c7a3fc7..d5ccf906271 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 3a0bfa110e011a69b0ec1ced66da17507128c139..a846a4694d4e576837879831bfeb8056d336edbf 100644 GIT binary patch delta 25 hcmaDfo$=9h#tmn+xy*D8Oce|atc(mdU)SbV004fZ2y6fV delta 25 hcmaDfo$=9h#tmn+xlDD9EENpQt&A-, 2021\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" @@ -180,7 +180,7 @@ msgstr "configuratiemap bevat geen conf.py bestand (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -580,7 +580,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -777,21 +777,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1212,7 +1212,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3030,24 +3030,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3055,7 +3055,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3070,30 +3070,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 41a79e15228e26ea2b81d7753fa5aa8a08995fac..6c01cbcaf55dc887aed7fd4e5348b7b8e8e0d45c 100644 GIT binary patch delta 25 gcmZpE!PxwQal>*)E;C&NQw0M9D*)E>m42O9caSD`U&e8y$m;0DCnEo&W#< diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 12cf771a732..cd2b1139373 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: m_aciek , 2017-2020\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -177,7 +177,7 @@ msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "%d plików źródłowych podano w wierszu poleceń" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -774,21 +774,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "wczytywanie szablonów... " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3027,24 +3027,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "domyślny sufiks dla plików (domyślnie: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index bebc4d3c55508c809a42ab779e3a565643c8bb54..58eb9854f22852c64f08a03a8282a76195ecc37c 100644 GIT binary patch delta 21 ccmZ3$vVdhm8<&}`fvJLlft8Wr#t9P`0YkF}AOHXW delta 21 ccmZ3$vVdhm8<(lBk)?uxxs|cy#t9P`0Ypy*H2?qr diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 6df1d2978b5..ae615527244 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index eeb6e4443c6ca3b71724971cf541d1316508de3c..1fbe4708d58225f4811769a4cfe74aa73235bb33 100644 GIT binary patch delta 25 hcmaFzm*vS{mJLT&bD8NHm?{_;SQ!~^KEGOYG60)M3a, 2019-2022\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" @@ -179,7 +179,7 @@ msgstr "o diretório de configuração não contém um arquivo conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -579,7 +579,7 @@ msgstr "%d arquivos-fonte dados na linha de comando" msgid "targets for %d source files that are out of date" msgstr "alvos para %d arquivos fonte que estão desatualizados" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "compilando [%s]: " @@ -776,21 +776,21 @@ msgstr "o valor da configuração “version” não deve estar vazio para EPUB3 msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Os catálogos de mensagens estão em %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "alvos para os %d arquivos de modelo" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "lendo modelos… " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "escrevendo catálogos de mensagens… " @@ -1211,7 +1211,7 @@ msgid "job number should be a positive number" msgstr "número de tarefas deve ser um número positivo" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "Para mais informações, visite ." @@ -3029,24 +3029,24 @@ msgid "" msgstr "autosummary gera arquivos .rst internamente. Mas seu source_suffix não contém .rst. Ignorado." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: falhou em determinar %r a ser documentado, a seguinte exceção foi levantada:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] gerando autosummary para: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] escrevendo em %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3054,7 +3054,7 @@ msgid "" "%s" msgstr "[autosummary] falha ao importar %s\nPossíveis dicas:\n%s" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3069,30 +3069,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nGera ReStructuredText usando diretivas de resumo automático.\n\nsphinx-autogen é um frontend para sphinx.ext.autosummary.generate.\nEle gera os arquivos reStructuredText a partir de diretivas autosummary\ncontidas nos arquivos de entrada fornecidos.\n\nO formato da diretiva autosummary está documentado no módulo Python\n``sphinx.ext.autosummary`` e pode ser lido usando:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "arquivos-fonte para gerar arquivos rST" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "diretório para colocar toda a saída" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "sufixo padrão para arquivos (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "diretório de modelos personalizado (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "documenta membros importados (padrão: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 78938e5be03db31df8db820200ca8a98205b07b1..76e27ba497c856764296e595e3713019eeebc78d 100644 GIT binary patch delta 23 ecmaEC_tT_Z~c19K~5%gyhFN_YTmDF`9} diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index f38d2160c3a..6f402b2c79d 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Takeshi KOMIYA , 2016\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -175,7 +175,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index e2ed1948dd7c0333558992161937c92ac4d73e60..156fcc59eaa85be9251ed6ec863f597e748f98cf 100644 GIT binary patch delta 21 dcmez7^37$#2@wuMBLxEkD, 2015-2017\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 159704e9010dda1d33540de5c7f58f517031b2b8..4451e819c888014bc3b613eff6152e6998341f81 100644 GIT binary patch delta 25 gcmZ48z__}Bal?K&E;C&NQw0M9Dm42O9caSD`U&eC*_h90dJ@X2LJ#7 diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 807c6eba867..acb717d0759 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Il'ya , 2022\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" @@ -180,7 +180,7 @@ msgstr "в конфигурационной папке нет файла conf.py #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -580,7 +580,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -777,21 +777,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1212,7 +1212,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3030,24 +3030,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3055,7 +3055,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3070,30 +3070,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index c1791f29e51f4fcbc8bf0af0cb136d60a43a406f..a63d7ae19481f2005aea8cb5cd1ba73a77e64201 100644 GIT binary patch delta 23 ecmbOvGf8H{UN$Z>T|*-U0|P4~gU!d;yx9R%BnFNE delta 23 ecmbOvGf8H{UN$aMT_Z~c19K~5%gx8xyx9R%@&={= diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 729a1e70272..c8c399ad08e 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: callkalpa , 2013\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index c80d84537d7d911b8ef6b6e0ed5ac92871e76b1f..28773f99f1b07156f8076283fd299837f5c08f3e 100644 GIT binary patch delta 25 hcmex9jph3^mJN(kxXg47Oce|atc(mdb5F@B2LO7Q2#f## delta 25 hcmex9jph3^mJN(kxJ-48EENpQt&A-, 2013-2019,2021\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -176,7 +176,7 @@ msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -576,7 +576,7 @@ msgstr "%d zdrojové súbory zadané v príkazovom riadku" msgid "targets for %d source files that are out of date" msgstr "ciele pre %d zdrojových súborov, ktoré sú zastarané" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "zostavovanie [%s]: " @@ -773,21 +773,21 @@ msgstr "konfiguračná hodnota „version” nesmie byť prázdna pri EPUB3" msgid "invalid css_file: %r, ignored" msgstr "neplatný css_file: %r, ignorovaný" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalógy správ sú v %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "čítanie šablón… " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "zapisovanie katalógov správ…" @@ -1208,7 +1208,7 @@ msgid "job number should be a positive number" msgstr "počet úloh musí byť kladné číslo" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3026,24 +3026,24 @@ msgid "" msgstr "autosummary interne generuje súbory .rst. Ale Váš source_suffix neobsahuje .rst. Preskočené." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3051,7 +3051,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3066,30 +3066,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "adresár umiestnenia výstupu" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "predvolená prípona súboru (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "vlastný adresár šablón (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "dokumentovať importovaných členov (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 50e9bf760487618db44024e682173e1802d22866..c0f1b5da5e2e68f1fa37d5492e0f7c0f9babd1d3 100644 GIT binary patch delta 23 ecmZ3fwNh&X7cZBYu7Rn7fq|8g;bswDQ4Ro0Km|?! delta 23 ecmZ3fwNh&X7cZBou92mJfw`5j\n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 48a1204b017..69e8c62a7ed 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 5.1.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-06-05 00:21+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/sphinx/locale/sq/LC_MESSAGES/sphinx.mo b/sphinx/locale/sq/LC_MESSAGES/sphinx.mo index 5768ce67b22a7df6dacc04c851a5885db0fc706f..f1e5960150b9f6fd26e5477e3d05793c85f34e04 100644 GIT binary patch delta 25 hcmZ4Zh-Kj;mJJ4rxXg47jT8(Ftc(mcTP=Ft2LOIN34s6r delta 25 hcmZ4Zh-Kj;mJJ4rxJ-48EENpQt&A-, 2021-2022\n" "Language-Team: Albanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sq/)\n" @@ -174,7 +174,7 @@ msgstr "drejtoria e formësimeve nuk përmban një kartelë conf.py (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "kartela burim %d dhënë te rresht urdhrash" msgid "targets for %d source files that are out of date" msgstr "objektiva për kartela burim %d që janë të papërditësuara" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "po montohet [%s]: " @@ -771,21 +771,21 @@ msgstr "vlera e formësimit \"version\" s’duhet të jetë e zbrazët për EPUB msgid "invalid css_file: %r, ignored" msgstr "css_file e pavlefshme: %r, u shpërfill" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalogët e mesazheve gjenden te %(outdir)s." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "objektiva për kartela gjedhe %d" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "po lexohen gjedhe… " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "po shkruhen katalogë mesazhesh… " @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "numri i aktit duhet të jetë një numër pozitiv" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "Për më tepër hollësi, vizitoni ." @@ -3024,24 +3024,24 @@ msgid "" msgstr "vetëpërmbledhja prodhon së brendshmi kartela .rst. Por source_suffix juaj s’përmban .rst. U anashkalua." #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "vetëpërmbledhje: s’u arrit të përcaktohet %r për t’u dokumentuar, u shfaq përjashtimi vijues:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[vetëpërmbledhje] prodhim vetëpërmbledhje për: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[vetëpërmbledhje] po shkruhet te %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nProdhoni ReStructuredText duke përdorur direktiva vetëpërmbledhje.\n\nsphinx-autogen është një ndërfaqe pamore për sphinx.ext.autosummary.generate. Prodhon\nkartela reStructuredText nga direktiva vetëpërmbledhjeje që përmbahen te\nkartelat e dhëna.\n\nFormati i direktivës vetëpërmbledhje dokumentohet te\nmoduli Python ``sphinx.ext.autosummary`` dhe mund të lexohet duke përdorur::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "kartela burim për të cilat të krijohen kartela rST" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "drejtori ku të vendosen krejt përfundimet" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "prapashtesë parazgjedhje për kartela (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "drejtori gjedhesh vetjake (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "pjesë të importuara të dokumentit (parazgjedhje: %(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index fc82a77fd80d9368febb301ed97d7360cc938383..6817d63b1ab68b1a01fa4482cad5eaa1c0ffb2c1 100644 GIT binary patch delta 23 fcmccQdC7CbX(28%T|*-U0|P4~gUwfk{t5yBY8VJu delta 23 fcmccQdC7CbX(29CT_Z~c19K~5%gtAX{t5yBYUT)V diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 96b6b42969a..1163766e35a 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Vladimir Milovanović , 2020\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -175,7 +175,7 @@ msgstr "Конфигурациони директоријум не садржи #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -575,7 +575,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -772,21 +772,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1207,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3025,24 +3025,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3050,7 +3050,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3065,30 +3065,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index e31076219a38480e1bdb605c02bba97f3d2b7b2f..4a36ae55a9b4894f8f056475695e25aa26185a55 100644 GIT binary patch delta 21 ccmX@Xa)M<-8<&}`fvJLlft8Wr#tAzZ0ZKy#m;e9( delta 21 ccmX@Xa)M<-8<(lBk)?uxxs|cy#tAzZ0ZQKntpET3 diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 3d4620e7064..a852fb1ba48 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index ec201ab07c3f2779ada0b44cecc008d61b06143e..7dcb6df90726688c772994fc2b30baf34f74e381 100644 GIT binary patch delta 21 ccmX@ia+qa88<&}`fvJLlft8Wr#tEAl0ZDNNi2wiq delta 21 ccmX@ia+qa88<(lBk)?uxxs|cy#tEAl0ZI)9o&W#< diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index 03554652c35..3166cea318f 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index f9caa57599f27737842cf3de00c2cfc2334d4271..dc70a5bb0ff1afd019be97a2b99da608ca522d36 100644 GIT binary patch delta 23 ecmaE4^2lVv838UcT?11E0|P4~!_C(OdN=`ShX>XG delta 23 ecmaE4^2lVv838U+T_Z~c19K~5%gxsWdN=`TI0x$h diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index b6bf9ae67db..6db27d3b592 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 6426d2831d7bd0af3379352d31e985fae748a231..a3df06d85f40e73f41be51097d6b85b1137d3077 100644 GIT binary patch delta 21 ccmZo?ZD*aZh09FW&`80+z{<#A, 2019\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.mo b/sphinx/locale/te/LC_MESSAGES/sphinx.mo index bb3b77c8212eeea3807c3be28ed781c03fa9ed79..fbee4ef0d123c55f6bb668e191917cf0b74399c0 100644 GIT binary patch delta 21 ccmaFK{E~S>8<&}`fvJLlft8Wr#tD&(08WPnc>n+a delta 21 ccmaFK{E~S>8<(lBk)?uxxs|cy#tD&(08b+ZjsO4v diff --git a/sphinx/locale/te/LC_MESSAGES/sphinx.po b/sphinx/locale/te/LC_MESSAGES/sphinx.po index 8e4eb06f3b5..dde9043b72f 100644 --- a/sphinx/locale/te/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/te/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Telugu (http://www.transifex.com/sphinx-doc/sphinx-1/language/te/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index f2506579db4cef102a9b635d22898e8993be30b3..5c50937f502bb6b99f77138bac5af9379b7fbac6 100644 GIT binary patch delta 25 gcmaEQocZZ-<_+03TxPlkrV0iIRz`-KOKS?!0fz7iU;qFB delta 25 gcmaEQocZZ-<_+03T&B84mI?;uR>qc_OKS?!0f(UpbpQYW diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 6fed01294b6..70049441347 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: BouRock, 2020\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" @@ -177,7 +177,7 @@ msgstr "config dizini bir conf.py dosyası içermiyor (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -577,7 +577,7 @@ msgstr "komut satırında verilen %d kaynak dosyası" msgid "targets for %d source files that are out of date" msgstr "güncel olmayan %d kaynak dosyası için hedefler" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "[%s] oluşturuluyor:" @@ -774,21 +774,21 @@ msgstr "yapılandırma değeri \"version\", EPUB3 için boş olmamalıdır" msgid "invalid css_file: %r, ignored" msgstr "geçersiz css_file: %r, yoksayıldı" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "İleti katalogları %(outdir)s içinde." -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "%d şablon dosyası için hedefler" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "şablonlar okunuyor..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "ileti katalogları yazılıyor..." @@ -1209,7 +1209,7 @@ msgid "job number should be a positive number" msgstr "iş numarası pozitif bir sayı olmalıdır" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3027,24 +3027,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3052,7 +3052,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3067,30 +3067,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index bfc67b63fff8ef24578a3639f7178202c0e35c64..fa3174f0e27c8cd4d82f0a14108ebfc1025ec0cd 100644 GIT binary patch delta 23 ecmZ2#veab5K^`tMT?11E0|P4~!_B98qIdyZX$KGh delta 23 ecmZ2#veab5K^`tsT_Z~c19K~5%gv{GqIdya8V4l+ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index f9fd2105f18..7b35f371a4d 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: Petro Sasnyk , 2009\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -174,7 +174,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -574,7 +574,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -771,21 +771,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3024,24 +3024,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3049,7 +3049,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3064,30 +3064,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 39155d50aeaf5806aacd1f62b2c64c06ed3b99e1..53525bd29243010ad93e08c56f269a1ad6f2dcbb 100644 GIT binary patch delta 21 ccmaFP{G5408<&}`p^<`tft8WL#tGq!08SYOZ~y=R delta 21 ccmaFP{G5408<(lBk)?uxxs|cy#tGq!08Y;ahyVZp diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 0455b13078a..5e225c3c9a9 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.mo b/sphinx/locale/yue/LC_MESSAGES/sphinx.mo index 49e401ad086aca7f8de229b5248ea53f50576656..58adcf510ccc829e633fd9bda666af3125f529fc 100644 GIT binary patch delta 21 ccmaFP{G5408<&}`p^<`tft8WL#tGq!08SYOZ~y=R delta 21 ccmaFP{G5408<(lBk)?uxxs|cy#tGq!08Y;ahyVZp diff --git a/sphinx/locale/yue/LC_MESSAGES/sphinx.po b/sphinx/locale/yue/LC_MESSAGES/sphinx.po index c2a19698d36..b595fddf331 100644 --- a/sphinx/locale/yue/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/yue/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Cantonese (http://www.transifex.com/sphinx-doc/sphinx-1/language/yue/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index d69bc9bb1bdf4f7917e6c39ec114fdcbaab25444..1e34129a8206b084dbfc64d33146118e4ed64e69 100644 GIT binary patch delta 15606 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 SE8c&KobX4Au|Li({r>=}m5wF= delta 11378 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 diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index fc6f1ff18dc..385207622df 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -18,15 +18,15 @@ # Takeshi KOMIYA , 2019,2021-2022 # Tower Joo, 2009 # wendi cao <651645601@qq.com>, 2020 -# Yinian Chin , 2013,2018,2020 +# Yinian Chin , 2013,2018,2020,2022 # Yinian Chin , 2013 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-12 00:20+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: JY3, 2022\n" +"Last-Translator: Yinian Chin , 2013,2018,2020,2022\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -190,8 +190,8 @@ msgstr "配置目录中缺少 conf.py 文件 (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." -msgstr "" +"configuration to a valid language code. Falling back to 'en' (English)." +msgstr "发现无效的配置值:'language = None'。请修改为有效的语言代码。回退至 'en' (英语)。" #: sphinx/config.py:201 #, python-format @@ -590,7 +590,7 @@ msgstr "命令行给出了 %d 个源文件" msgid "targets for %d source files that are out of date" msgstr "%d 个源文件的目标文件已过期" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "构建 [%s]: " @@ -787,21 +787,21 @@ msgstr "对于 EPUB3 格式,配置项“version”不能为空" msgid "invalid css_file: %r, ignored" msgstr "无效的 css_file:%r,已忽略" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "消息目录保存在 %(outdir)s 目录。" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "%d 个模板文件的目标文件" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "读取模板... " -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "写入消息目录... " @@ -823,7 +823,7 @@ msgstr "锚点“%s”未找到" #: sphinx/builders/linkcheck.py:553 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "无法编译 linkcheck_allowed_redirects 中的正则表达式:%r %s" #: sphinx/builders/manpage.py:30 #, python-format @@ -979,7 +979,7 @@ msgstr "无法复制可下载文件 %r:%s" #: sphinx/builders/html/__init__.py:805 sphinx/builders/html/__init__.py:817 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "" +msgstr "无法复制 html_static_file 中的文件:%s: %r" #: sphinx/builders/html/__init__.py:838 msgid "copying static files" @@ -1086,7 +1086,7 @@ msgstr "网站图标 文件 %r 不存在" msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." -msgstr "" +msgstr "html_add_permalinks 自 v3.5.0 后废止。请改用 html_permalinks 和 html_permalinks_icon。" #: sphinx/builders/html/__init__.py:1340 #, python-format @@ -1155,7 +1155,7 @@ msgstr "未知配置项:latex_elements[%r],已忽略。" #: sphinx/builders/latex/__init__.py:453 #, python-format msgid "Unknown theme option: latex_theme_options[%r], ignored." -msgstr "" +msgstr "未知主题选项:latex_theme_options[%r],已忽略。" #: sphinx/builders/latex/theming.py:83 #, python-format @@ -1199,7 +1199,7 @@ msgid "" "This can happen with very large or deeply nested source files. You can " "carefully increase the default Python recursion limit of 1000 in conf.py " "with e.g.:" -msgstr "" +msgstr "在源文件过大或嵌套层数过深时会出现此错误。你可以在 conf.py 中增大默认的Python 递归 1000 层限制,像这样:" #: sphinx/cmd/build.py:65 msgid "Exception occurred:" @@ -1222,7 +1222,7 @@ msgid "job number should be a positive number" msgstr "工作编号应为正值" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "要了解更多,请访问 。" @@ -1243,7 +1243,7 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\n从源文件生成文档。\n\nsphinx-build 从 SOURCEDIR 中的文件生成文档,并保存在 OUTPUTDIR。\n它从 SOURCEDIR 的“conf.py” 中读取配置。“sphinx-quickstart”工具可以生\n成包括“conf.py”在内的模板文件。\n\nsphinx-build 可以生成多种格式的文档。在命令行中指定构建器名称即可\n选择文档格式,默认是 HTML。构建器也可以执行文档处理相关的其他\n任务。\n\n默认只会重新构建过期内容。如果指定了文件名,那么只会产生这些文件\n的输出。\n" #: sphinx/cmd/build.py:120 msgid "path to documentation source files" @@ -1516,7 +1516,7 @@ msgid "" "Python the version is something like 2.5 or 3.0, while the release is\n" "something like 2.5.1 or 3.0a1. If you don't need this dual structure,\n" "just set both to the same value." -msgstr "" +msgstr "在 Sphinx 中,会区分“版本”和“发行版本”两个概念。同一版本可以\n有多个发行版本。例如,Python 版本可以是 2.5 或 3.0,而发行版\n本则是 2.5.1 或 3.0a1。如果你不需要这样的双重版本结构,请把这\n两个选项设置为相同值。" #: sphinx/cmd/quickstart.py:256 msgid "Project version" @@ -1544,7 +1544,7 @@ msgstr "项目语种" msgid "" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "源文件的文件名后缀。一般是“.txt”或“.rst”。只有此后缀的文件才会\n被视为文档的源文件。" #: sphinx/cmd/quickstart.py:276 msgid "Source file suffix" @@ -1670,7 +1670,7 @@ msgstr "如果指定了此选项,将使用独立的源文件目录和构建目 #: sphinx/cmd/quickstart.py:478 msgid "if specified, create build dir under source dir" -msgstr "" +msgstr "如已指定,在源文件目录下创建构建目录" #: sphinx/cmd/quickstart.py:480 msgid "replacement for dot in _templates etc." @@ -1834,7 +1834,7 @@ msgstr "行规范 %r:未能从包含文件 %r 中拉取行" #: sphinx/directives/other.py:102 #, python-format msgid "toctree glob pattern %r didn't match any documents" -msgstr "" +msgstr "目录树 glob 规则 %r 未匹配到文档" #: sphinx/directives/other.py:123 sphinx/environment/adapters/toctree.py:168 #, python-format @@ -1849,7 +1849,7 @@ msgstr "目录树引用的文档 %r 不存在" #: sphinx/directives/other.py:136 #, python-format msgid "duplicated entry found in toctree: %s" -msgstr "" +msgstr "在目录树中发现重复条目:%s" #: sphinx/directives/other.py:168 msgid "Section author: " @@ -1896,7 +1896,7 @@ msgstr "" #: sphinx/domains/c.py:3226 #, python-format msgid "%s (C %s)" -msgstr "" +msgstr "%s (C %s)" #: sphinx/domains/c.py:3347 sphinx/domains/cpp.py:7320 #: sphinx/domains/python.py:433 sphinx/ext/napoleon/docstring.py:727 @@ -1936,7 +1936,7 @@ msgstr "宏" #: sphinx/domains/c.py:3754 msgid "struct" -msgstr "" +msgstr "结构体" #: sphinx/domains/c.py:3755 sphinx/domains/cpp.py:7732 msgid "union" @@ -1956,7 +1956,7 @@ msgstr "类型" #: sphinx/domains/c.py:3760 sphinx/domains/cpp.py:7740 msgid "function parameter" -msgstr "" +msgstr "函数参数" #: sphinx/domains/changeset.py:20 #, python-format @@ -1988,7 +1988,7 @@ msgstr "引文 [%s] 没有被引用过。" msgid "" "Duplicate C++ declaration, also defined at %s:%s.\n" "Declaration is '.. cpp:%s:: %s'." -msgstr "" +msgstr "重复的 C++ 声明,已经在 %s:%s 处声明。\n声明为 '.. cpp:%s:: %s '." #: sphinx/domains/cpp.py:7081 msgid "Template Parameters" @@ -2014,7 +2014,7 @@ msgstr "概念" #: sphinx/domains/cpp.py:7741 msgid "template parameter" -msgstr "" +msgstr "模板参数" #: sphinx/domains/javascript.py:131 #, python-format @@ -2148,7 +2148,7 @@ msgstr "%s() (%s 类方法)" #: sphinx/domains/python.py:820 sphinx/domains/python.py:960 #, python-format msgid "%s (%s property)" -msgstr "" +msgstr "%s (%s 属性)" #: sphinx/domains/python.py:822 #, python-format @@ -2177,7 +2177,7 @@ msgstr "静态方法" #: sphinx/domains/python.py:1163 msgid "property" -msgstr "" +msgstr "属性" #: sphinx/domains/python.py:1221 #, python-format @@ -2330,12 +2330,12 @@ msgstr "无效的 numfig_format:%s" #: sphinx/domains/std.py:1075 #, python-format msgid "undefined label: %s" -msgstr "" +msgstr "未定义的标签:%s" #: sphinx/domains/std.py:1077 #, python-format msgid "Failed to create a cross reference. A title or caption not found: %s" -msgstr "" +msgstr "无法创建交叉引用。未找到标题或图题:%s" #: sphinx/environment/__init__.py:71 msgid "new config" @@ -3040,24 +3040,24 @@ msgid "" msgstr "autosummary 内部生成 .rst 文件,但是 source_suffix 中不包含 .rst,已跳过。" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary:无法判断是否生成 %r 的文档。出现了下列异常:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 生成 autosummary:%s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] 写入 %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3065,7 +3065,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3080,30 +3080,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n用 autosummary 指令生成 ReStructuredText\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的前端,它根据给定\n的输入文件中的 autosummary 指令生成 reStructuredText  文件\n\nautosummary 指令的格式见 Python 模块 ``sphinx.ext.autosummary`` 的文\n档,并且可以这样调出文档阅读::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "用于生成 rST 文件的源文件" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "输出目录" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "默认的文件名后缀(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "自定义模板目录(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "文档导入的成员(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW.Big5/LC_MESSAGES/sphinx.mo index ac1229ae9b9ae6ecfcfaca3db1aae3c7c58de739..90af9116d6739db75c08b2d211c4ba3d0fb31e79 100644 GIT binary patch delta 21 ccmZo+XuaY6|r06!ZA%m4rY delta 21 ccmZo+X\n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW.Big5/)\n" @@ -173,7 +173,7 @@ msgstr "" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." +"configuration to a valid language code. Falling back to 'en' (English)." msgstr "" #: sphinx/config.py:201 @@ -573,7 +573,7 @@ msgstr "" msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "" @@ -770,21 +770,21 @@ msgstr "" msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " msgstr "" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -3023,24 +3023,24 @@ msgid "" msgstr "" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" @@ -3048,7 +3048,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3063,30 +3063,30 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index c2ac4f8bb3f..d5d64bf26f1 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -37,7 +37,7 @@ Documentation.addTranslations({ "Search": "\u641c\u5c0b", "Search Page": "\u641c\u5c0b\u9801\u9762", "Search Results": "\u641c\u5c0b\u7d50\u679c", - "Search finished, found ${resultCount} page(s) matching the search query.": "", + "Search finished, found ${resultCount} page(s) matching the search query.": "\u641c\u5c0b\u7d50\u675f\uff0c\u5171\u627e\u5230 ${resultCount} \u500b\u9801\u9762\u7b26\u5408\u641c\u5c0b\u689d\u4ef6\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u5c0b", "Searching": "\u641c\u5c0b\u4e2d", "Searching for multiple words only shows matches that contain\n all words.": "\u641c\u5c0b\u591a\u500b\u95dc\u9375\u5b57\u6642\uff0c\u53ea\u6703\u986f\u793a\u5305\u542b\u6240\u6709\u95dc\u9375\u5b57\u7684\u7d50\u679c\u3002", diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index e1de86bc40e20af18bf3f7c65a084d1186727f5f..8389dfd6e308803cfa1588adcc18347bfd7bf92d 100644 GIT binary patch delta 23330 zcmbW734B!5_4r>9T*9J)5JZK?5|aQ4VG|9z?6PYR_b^E&WF(o1GZTbboInU91`O~3 zW#1tzVH?>3!PYKnTUx8O7WLoSHZw`uy8LQgezms0?|JvmB!Q^E|BnyyefQ40_nv$1 zIp?1Ht{?ue)t}B@6Zn0{)*B4|u4EMT}v52q!>)qG5RXxjM-( z@?dgb!)OmT!#1!I^4B=ZKhMLid_3=o1M<6q&;@IUY-cyqF9-wU>-+#kw&cf&4l8kG04U zkHO(^AM64D2m_sYh#90Lii1*~0Zo_-s;!M9P2FyalPdQyvLf zW8*O>?Y6@9a37Q<4Gu>CGNa#6Ap`$EI0SwQO_)eQ8ccyV!MU&-%!M+8VkjN&fg;cl$re;_J-F|5P|wa(bOPl!uz3U$_Kl^z!Dxr#p_`wxEm4* zjMGs3_?)h)n38jOtp=jVbEUGhXuh|<)KleZpc)BhZ!ZONb@KM-lguNsI!=oOI z)lgJ*7>aS!z#HKope)J9a2)(6lo^depKkaBoB%IDakoxbrnEDmxN|C$`Vmn2nF3{; zbi2&@=kOrb`xNX7H$ySDAe0&Z7|KjvhoaJ7!CT-vP~Q6+6b*h2rJuH=l?@DmqM4CU z27UmF%AbI@!$R0Cz{5HoZiQ7a4!)}S2Ph4`(7$&WV;DqXBN2+t%!H!qbx@3LKYSdX zf--QYu__)UL9vMuun(LErCkXOh-x`~{S?`~-@it;Q<>VxhF}0p<5ZC^Jrj55pPo5m-4spsf5FENCzlDUhgZ zWWq$a4yM5Ka2EUvEP%r&DkD4sds6-d>;*r9ec;WLl)K#pos{Q78L$S4BUsE$*h%y0%wfL>kRtjian3>=0SzH$A1Dxyt1h!&BU{b~~m0#B z3~z*AXkM4DtT_(K43nT3+fXR+;}IzB{7@#e4&sqU6%^z97>cIuo1?bpMKB~$z>+Uh~2iR)n}%AKJsO%l8d4uphrBNtAAdv*CEm`1rTmWN#%PRPDw9EGBp zdN>HCK7{_|A?qO(C^o_&l=ndq>|NLeegS1>9dO?6us;-mroxUe1I9rwl!-hCWhr*R zo8W6uGCCvP5g)Sn>aZ zJcvYpg)*bh;a#wEwzBGJa4hAGP&)V>lqLHV${P1^Dytq2B`_63S>rdM80ULXH2je+ z-;tv2X?6t~+1Wu{e71o#(B zg2@Y%mCx18*DQwOEt{ZB!@E2C%{#(9efk^f`5RCu$5bBpr0H4i)53i5IXe_#ZVgTfNkI_P>kj^ zXnTofXOHsx`=AJ%0f)mC@LFl7`8t&T-heWpPvKT#R|pxD3(DDH9&iXgv*B1i+2nclQmm50Nrlr!NC z@F)}wo`oXFPj&qzD4Ki+O8eH|L;tBf4B$bme;$-2coxcld*KW4jONT|luGL~Z~eaV z_o?tP-g7`v@kN*b--Xg&t0l^P6CvA+kq#vg1(%?IQRSOd42ADNS&H`0s+skK;uVv1 zIS-2D7PJR~Z79DBB|dxr#j4w(Rv9=A%6s#mxZU?Px5Lhqe-O|WzlB|>_!5fo+*qUr z?h2(m0*Xc^!0zxNI2=9=WvPNtem@UoiGB&Y!p}52ELDOeKpA)(yd6Fq;6Ywo2ycZI zP&zsY_JraU>T}%ZP>eTgrCNI*lr{ezwNRGeeJGKtW0~^Tp-|lGJ}4@k3q=D(d<&#Q~ZAu53-i$VITMf6hUrZrDi+~UZ(swOoGE!D~&kd^_1Q4I`}kv z1O}iC@GcZV{|*yio9ES1C&TfSC&G!0Z4E%HyH*6M%smd04^29dM)m;Uy?4JP$?1zk=dM z9oDL)>Z_Rs+fjcX6yu!>rQ@e`{USJ;atRbS{)uJ-l>XYUL;tc{C9P8_R~}5Kya!50 zUqYGTf1nI-gQeWGH=IH_4Niy4p}ha5{{6Bpf1>#Xl!^Wuc7z?)VBmB#YamR5lpO+Kq$K(R?UN@;xZFu^gK4N6-Un;Z&HuS=q); zD5|g0tkLzCAQKB1@A4oL|55+&B@|V+*`nMi70SSqp=jb!%}h-f>_mM56k}YjxfV)4 z+o8039d?Cp=yC(RO?2>y{-NDg^+LSnD9yQ=1)61=yI~?7o`=b>7K)%9w<$s5VGiX% zQ0g~n9)Z&CW!Oj7pq>YrLHq5hVNWO$r)Un<9HBW5+HMDBDdy^W2kcHcSC?19TPQyd z<^4UH$KgcEH85}+53P5oj!Zb2a$jBcL0P*cy1ZJKUw{j#KLAr<_nj)x%!D#fA(RO$ zgQD^>D1z>WQhx->d%>OPe;N-zpkg*`ze~AC2JAukdzzb}bX2X&Z^8R1e+u*A#N8@@ zy`=dj>`whB(1bVcQQK`QbW)xU=fdEgfU?%Md)29RE)>-qhY~`+fF|s*PYE^#-a+|M z*b^>>;vHL{4EQn>H~l>n&2-wYW;`CIQ=SUNJ9fe+;ok!Kg}Dcmik^V2`5_nfg8A@O zxCVBE4^^sxd@zCXI(RLt*8HL7Yfx1DD|jn>U)O&QS5p2O4ugS`gG$mGC^P#AUJu(H zQfYE$*oLwR+rvAd{5}M>g(IN@PJv6|VJLwn`LNQ&<4^=y2PGiwfTF2W5Tg$mZ}TAT zQ4dGJub`~;-AB~SX2TmOKLn@3OqdIgLQ!>GmD*0H!MiB0g`(=$U_W@rQPpk=jHA2( zN~o@aUB&fLgqryXD5{zR?|}=Ttnof510I1g;5l9YIvhy(4LB6G zI;l=ZcSF(0vrsg33XX$+fuezwAo{}v#!8vdhB-R*zf-=sEbIOZWL-B$w0Uo45wXS#z z$`bq?Cc+-o$_OVzkvw0Qw?Gl(2k;SC4@KZ{=hckoLs^1np?J+^%`lYsGU$S`xxg?U zVyQ@nGSdur6U>96@+Ht-3V18!_n>IvGbl5Pt5HVQ9i~&B0~f+Wup{hwQK^0il>Y96 z(rzJ)6aQbrLl-JGz`^hcYzsetGK0TC5#ail)#*45PNe({6hU5rqKR541Gf8t+QfRm zDU@@e40saC1kXX~@29Y%`2UwYq*BrLhw6n9P&%9f`@*Mm{Z=@c@WOz%kJLk-DmJKgR590^@;5Ig{7fOjD(Hd_5uu^W^n90Ys9X)quUZXU$y*FaJE%g}`HL22+W zm;}4LsstSa<^2pO#`-)I<2|FPu$z8Wg|Z4rQF9uc3c=@n=++@H5yA zc6nV%JP?WiQ(ywjg4e=wD4JRaW$6xUz7J)9_CM317v4iT4a(a4p|oELrN7djq5s=? zI8MdA@REMvrk^W;;-ECR8%}|vp%_mY90kuq>G+@U26){s6mN!ODc=Uiz{jEVza7ei z{s=|zuL3;CO!{9^ZZrY*r~G|593F%cxk6A>_7zNmalcdoj)fv%CKLf&upRV4>9+`8 z12;htcpDU3dmr8c17GnVZgbPGR0q8^lVM-#hrt_RCX|l7P>d{~%O_zn<(J_&_#qTQ z2EL&L9S%i6C%g;hY3_jtNdC`*bo?olIAHu*%{Wdo8OrbDG-p8(>~Z~jDU<=W!~Sre z{{2lTGyPise*2p$9q$cAGta>r#Q*p3AOloE>7W{l(bT~Ku;*K9Mzf(bd=%aY{jfJ& z4&z}Z6yyCRoC+JDXkzHws{heY1f8b&0PHRP|A;)mXQ8;`ZYY}gG3*21gCd~u8^c%x z+H0{rR_OA+%jjP^yhMdq_vcVl z+3{Uv19!u=lxINk*GHfTxD1L$%3v?J5sG`AgQD_(!CT?A?e_^%<*%kO~{xvHhuCaGsojKXD#;UdfaBdC%Z7u=`$VfY_q_TwZJi77qYxghu<0N zaXabjfpjy+mFF~{cKLHnN1@-Nnwi-y#_=AwNk*l#1^h&B`+02-vb^WP7p-^PO(Lua}wSap$<^n+qLzg|hNFNbJsH zeGAGD}4dX6653w?>i|3@*b;o0%Q z9X+3kxt9*3tLgChT=U&nh)*mOOLrIMXF9z;Gtuqz`KecB9{ipxzt`y;on*xOtbqeN z#iUqqy}ukC?_=G4rr3%@)ZxlDJq5On83`@?RuUaSK2v+O(pG_Xw z;vdtO=Xn}w(6b}k<(_Y57b-LMnJvCQa-?-BzVJTN>Gk3xxsHMY3_n|}lSRsQdZi2T zJ6RIeCnffNr^DxQr6eCHzREYIa$ zkd^DqT9AQRB4Bog*QqSuCtb?!nWvyQYx?#P-(n`L>johjx-rYvgABo@l_5}fV?GjW1@exA#h z+bSu=s!FLJXGd5Gq7L_BwHQ9po2cHANnkNOh5mvOza-xPRiENtGO%QvmAa$o@c)Oo|SUX zuwiC_&smu5Np5KvJ&KwS;hOj%yQByby#JmrVge4VPW(l0il!^y9>e2~M8zymKGJ35 z@hN74uK>$fltMo#uKf9UHE&_?2`nyK11oG!k@nLa^If=MW^^l0F((WF}yl0`m;nN{c`f02N2g=mtXcpX_zaeX3_HDUPBo^$lB zhcP#Lsl-4=pHJT7wiXTV*Lkj|5cg8~gRK||zSi#HyApDukFDmsB7q|Wm`~?ATaNG68^dpz!1Q%&Q{hnONzBfV=My^I z$zvZFH)V>vvXe>hdl2rO0!ClW3u3Nlwlw zWYmZT40c*)ex@BYeRRjXA~}Nf+Q{2`Qy>6E^^omkq4Qm&mFOs*?Ks|>WNjTa!TRgS zFMBt>_KoVYem&|ZoxGj}C`I-u*z#8DAks0L^9F^-yPfen#mCdw*xSCV7reYV@VKfBAUvBeJLp^X7uMqA$?YO zd`d^vsELfe;LQ^PF_w2??@lgXL7ro=$~iGqk;Aek7N$vtF{;5D^|In7eI7{gM=aZ6`fWG2L$+;A5~K5+Mz+V@_?F&^_z9P^ zN3)L@1N7;F;G|C(iO!VyDayR%HS9#&V>E{on+=E=^Lu`h9!AnoTDjOxwD8!eHWzzO z=6Dh@K+!GEn&_8odlGKs5Fzut6UBU8*;E{e@PG4kmcP=Jr#EU)N z1@eAmqN!Vp%Yo8^jzslrv_8KzWm*qw;Isn)=He^N$#E?* z6ZL5^&Gh>GNrucpmeiKuDywgNS*^ZL8mO#D$yea@NE+rda@=ekS-HtR|6<0nmDl8m z8_1G{#w8+WTo3ZuC)+CzwuYK50XaX@gW=i1&zEA(B0u*MkCh*>$z~E-SzlMnrAaBctjp-*@m!@|Q*hd9N zc6J7z4)Qr)xfl2_Pr|m7*q-eyKxWc+4sb3GpytBCDMM3InQ$Iw8mDYW>a5YEv7{Gv zr;T+Pwh`!IQw;l8JDO$`1Z0cD)6hSXHMfsuFE)FRZAH(MPF?u8%I#GH6_M5E`K>+6 zi;0|&>}@vs<~Q_h{bhPaKyNGJ)%H=8s3e)K9cM6jub~ny?VYxzHw!XNe!eOIp}(ucJ~KG{l9WbvAM43k)v1y2yV$Ol_-6;ZEHBAlax`_Y7s@`tT0Lf$GuxJC zZhzwcFlhD*7@r2e6`hD|2?}Q&9TUpUzjicgLxA^eTA7iM%npXE}N&`+0ti@ zYZCQ_Bv~KaA2%YQUxMs&3CZ?HFZ*jjK;y?qdwYuP zvpz$<I;oJXwgt*@j6Ap7bDX!3JB}C^L!%U zLYK8?&e8ziBKbhX$^F}M{m2#}9&9u%G_fSFhlOvJ6-8e3vilIcTO1&u&Qtv(Uu~JD z$4pK};AE}S=y)RcpQJ4w5*@qi>t85vK)mi?JYc3crK z*Fmz)(Zc1Id>Egx^M=US`qREM+bVtRsc0@vR*+>n3S9P9@Myg6ad9ra_ZfWG)PaN7 z)Q2H6E00sE{dStI*p}W=DUtoT)MvK%TAaEvaRRjq*>9O?!M{H?zEu*b3@NflQd$wk zXG9X?CO?Qx`K;uO5uL913M1z|DG0OF=yi|e%HdTjYtQek+q|5$ z)UP}gD&L@*eSD$pe?4a8Dkm~x^8xQ{KBBtfxq39KPu4HzUA4nv4&jpWP|=0Zg$+m@ z-g>BR$39WaMi%rmn@h91obPetlN zovEzfv_lkpW_MkAkt&L@=`SuHU*N|wgPl-T`^95Xa|(Xsyf$Wxovf%|u-ov4Qkpg_ zJ=?Ie#AxX!LPKP;R&NDA&FL7^CNaG6f@#I%zBRt(D;P7pwJ2P&o4)Ih7KJJ{hO5qC zvfp@L^H%P%>DWtXZE0P_#fF_r8@BD1t(+!xn=WASwbd(>w>7LfR)5Gg_|Wq^LR)rz zd||Vs^{f<*9V$KEunJq_Lwzva^;+uyUD|Q-8?I?g(OuOsyi~4qLVHhyH@u)al%bW31Ym6%rUvu9N86{KGP@ zVT)mFC9ehF^zM$iHe9)>VP}=)@c+%ps$n_mDn^eV+ECH3YZW>QA6Z^ovpT%8jM!Gc zevQE@51lESt~;_nw5C)w3-8`WOp(4k3u|HmwHH@}tJk2c@aa?aR(bgBk@|!C z#s8zd%fzC0WQ{jDGDr5cx~;Y#+qcrA5$#O!33ave9Ub;)dh6Cgm%)CE9*k*gU*f2# zSdM2pU0H6Yu5gr7$O|1J-*X$QV&&eXu^3#s_#ZLD%F0=D)vtJ6<1~%>%ICsMkEwkK zb7=mn<$I?0%}uUjqTSxocH_!W)eF&br{KnCPR0b3SE?N+RC6L!Tv13u7i1KYmZ=ao{#N95N%OSU7AzH`wbP(~v&sV}Y(bF5fXx3?PKiM1Th##xh|eOIFD zcL!=Sa(fbu*ii+A%Zl*n(5jNqn!{wWk*k+b$$`+(a|{`cY7NCT=q=h4D_VQ@$rLtSu%ltQgu096p}iYLT`bdo0{_+f zf1zCK{i3(yl$sif_Tcam%~>D&z9w~97wacW&s?!HNV0h5q%B0L{kGS7X4%Xkq?2dM z>o1hay4e{eHZ2CD_an7)HSAiAh|%Az3(NX+*1v4qO8OK1C3tyRmzaA(OHUCy&}``9 zp}KX)={k~VkiHhzl^hU7zg$zdfnBCbORjEoJ}SP{YL*!d0qc*2D_&BaYxS#9B?)dW zHCcYMH=0Up9bGZFt6IIQg${nO;-MIG|I+aKi|l2}&eRr#*wH-5x~sHzr-og}uMGe6aWHi|)WR>(+o9xDcf?$) zb_Z+Z>bQQOUf`BO+r#Ib_aVoBKJaO!|qCyth#7^P!8B9WjbL6BoZ}0BS+82M*W!`4Vx=T zz&JZKRFsCF--q+om#*a7<2POZn1o_U*ETH+T`WZ=(nZ=Bp_Mg^r4brdQOuGXYyfI7MNDQAZ80 zKPLz4crU865-Q?byePuv^_7s>u(3RJpj>Ar=XZyzc8dZIm+OA)lTPD}kQrLHN}YZh z>+D-1(SZG~z8{irr<@(@wgiq!9EsXT%P-mQ$UeIMqJ))ix)riJY^lGdS4WL6*&ViR z(xWxCq9~v?3AHsvPfU@7*d*%Mj^Z^`CKxespV>m-Y5Gb_KdV%x$;A-%cnxWcHE&Jt z;D;4A$IK>%kl!@hZjA8Gb75<9>^zu!n=H za+Ufs$3hp^atSmf(DWiixwY&H2hQ_dMMVL90n|8sxdOri?3k<40{b9o$|X=s_0ek} zzD0#f_t}YrYLVshS)b;?gGL?BqJUClI`evNI-!vCM@;K#)!5$-P3yr9m7D4ht%|I-*Lu?W zQ-EAoCj@fcBTibiMroVx7@@rf!e>r|s`pzdIr{cT4!G(p9x6FVUKIJzO4{wUBVWANAbZlETJ4X2(zl($DECt- zht>Lpl0a?E*7~9nY=fKui;zv|o6j98_=|&Ao-mpguCOhM4OeDN_P)VkBXqX7$smE! zt4=qvx7#0pB|m9?Ii!Z9cRhGr89UpNCf!}#n^9MG4*N7DPqn{+Yr!}L9xbk4`QV|@ znG~L5q)2>IdZ%a!9a0Y-uN5zgxbQs;_N!j$@7AwkV)l zkez delta 8813 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 z, 2018 # Liang-Bo Wang , 2016 # Liang-Bo Wang , 2016-2017 -# Steven Hsu , 2021 +# Steven Hsu , 2021-2022 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2022-05-29 07:39+0000\n" +"POT-Creation-Date: 2022-06-05 00:21+0000\n" "PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: Steven Hsu , 2021\n" +"Last-Translator: Steven Hsu , 2021-2022\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -181,8 +181,8 @@ msgstr "config 資料夾沒有包含 conf.py 檔案 (%s)" #: sphinx/config.py:172 msgid "" "Invalid configuration value found: 'language = None'. Update your " -"configuration to a valid langauge code. Falling back to 'en' (English)." -msgstr "" +"configuration to a valid language code. Falling back to 'en' (English)." +msgstr "找到無效的組態值: 'language = None' 。請以一個有效的語言碼更新您的配置。跳回 'en' (英語)。" #: sphinx/config.py:201 #, python-format @@ -475,12 +475,12 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/roles.py:188 #, python-format msgid "invalid PEP number %s" -msgstr "" +msgstr "無效的 PEP 號碼 %s" #: sphinx/roles.py:222 #, python-format msgid "invalid RFC number %s" -msgstr "" +msgstr "無效的 RFC 號碼 %s" #: sphinx/theming.py:72 #, python-format @@ -581,7 +581,7 @@ msgstr "在命令列給了 %d 個原始檔案" msgid "targets for %d source files that are out of date" msgstr "%d 個過時原始檔案的目標" -#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:233 +#: sphinx/builders/__init__.py:298 sphinx/builders/gettext.py:236 #, python-format msgid "building [%s]: " msgstr "正在建立 [%s]:" @@ -778,52 +778,52 @@ msgstr "conf 值 \"version\" 在 EPUB3 不應該為空" msgid "invalid css_file: %r, ignored" msgstr "無效的 css_file: %r, 已略過" -#: sphinx/builders/gettext.py:212 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "訊息目錄是在 %(outdir)s" -#: sphinx/builders/gettext.py:234 +#: sphinx/builders/gettext.py:237 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "模板檔 %d 的目標" -#: sphinx/builders/gettext.py:238 +#: sphinx/builders/gettext.py:241 msgid "reading templates... " -msgstr "" +msgstr "正在讀取模板..." -#: sphinx/builders/gettext.py:266 +#: sphinx/builders/gettext.py:269 msgid "writing message catalogs... " -msgstr "" +msgstr "正在寫入訊息目錄..." #: sphinx/builders/linkcheck.py:110 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "尋找以上輸出或 %(outdir)s/output.txt 中的任何錯誤" #: sphinx/builders/linkcheck.py:145 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "錯誤連結: %s (%s)" #: sphinx/builders/linkcheck.py:322 #, python-format msgid "Anchor '%s' not found" -msgstr "" +msgstr "未找到錨 '%s'" #: sphinx/builders/linkcheck.py:553 #, python-format msgid "Failed to compile regex in linkcheck_allowed_redirects: %r %s" -msgstr "" +msgstr "在 linkcheck_allowed_redirects 編譯 regex 失敗: %r %s" #: sphinx/builders/manpage.py:30 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "手冊頁面在 %(outdir)s" #: sphinx/builders/manpage.py:37 msgid "no \"man_pages\" config value found; no manual pages will be written" -msgstr "" +msgstr "未找到 \"man_pages\" 組態值:不會編寫任何手冊頁面" #: sphinx/builders/latex/__init__.py:292 sphinx/builders/manpage.py:46 #: sphinx/builders/singlehtml.py:153 sphinx/builders/texinfo.py:102 @@ -833,41 +833,41 @@ msgstr "編寫中" #: sphinx/builders/manpage.py:61 #, python-format msgid "\"man_pages\" config value references unknown document %s" -msgstr "" +msgstr "\"man_pages\" 組態值引用未知的文件 %s" #: sphinx/builders/singlehtml.py:26 #, python-format msgid "The HTML page is in %(outdir)s." -msgstr "" +msgstr "HTML 頁面在 %(outdir)s 。" #: sphinx/builders/singlehtml.py:148 msgid "assembling single document" -msgstr "" +msgstr "正在組合單一文件" #: sphinx/builders/singlehtml.py:166 msgid "writing additional files" -msgstr "" +msgstr "正在寫入附加檔案" #: sphinx/builders/texinfo.py:38 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Texinfo 檔案在 %(outdir)s 。" #: sphinx/builders/texinfo.py:40 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "" +msgstr "\n在該目錄中執行 'make' 以透過 makeinfo 執行這些\n(在此使用 'make info' 以自動執行)" #: sphinx/builders/texinfo.py:68 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "未找到 \"texinfo_documents\" 組態值;不會編寫任何文件" #: sphinx/builders/texinfo.py:76 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "\"texinfo_documents\" 組態值引用未知的文件 %s" #: sphinx/builders/latex/__init__.py:274 sphinx/builders/texinfo.py:98 #, python-format @@ -884,48 +884,48 @@ msgstr " (於 " #: sphinx/builders/texinfo.py:188 msgid "copying Texinfo support files" -msgstr "" +msgstr "正在複製 Texinfo 支援檔案" #: sphinx/builders/texinfo.py:192 #, python-format msgid "error writing file Makefile: %s" -msgstr "" +msgstr "錯誤寫入檔案 Makefile: %s" #: sphinx/builders/text.py:22 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "文字檔案在 %(outdir)s 。" #: sphinx/builders/html/__init__.py:1091 sphinx/builders/text.py:69 #: sphinx/builders/xml.py:86 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "錯誤寫入檔案 %s: %s" #: sphinx/builders/xml.py:27 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "XML 檔案在 %(outdir)s 。" #: sphinx/builders/xml.py:98 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "pseudo-XML 檔案在 %(outdir)s 。" #: sphinx/builders/html/__init__.py:145 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "build info 檔案已失效: %r" #: sphinx/builders/html/__init__.py:177 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "HTML 頁面在 %(outdir)s 。" #: sphinx/builders/html/__init__.py:391 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "讀取 build info 檔失敗: %r" #: sphinx/builders/html/__init__.py:484 sphinx/builders/latex/__init__.py:177 #: sphinx/transforms/__init__.py:110 sphinx/writers/manpage.py:94 @@ -956,78 +956,78 @@ msgstr "正在產生索引" #: sphinx/builders/html/__init__.py:685 msgid "writing additional pages" -msgstr "" +msgstr "正在編寫附加頁面" #: sphinx/builders/html/__init__.py:764 msgid "copying downloadable files... " -msgstr "" +msgstr "正在複製可下載的檔案..." #: sphinx/builders/html/__init__.py:772 #, python-format msgid "cannot copy downloadable file %r: %s" -msgstr "" +msgstr "無法複製可下載的檔案 %r: %s" #: sphinx/builders/html/__init__.py:805 sphinx/builders/html/__init__.py:817 #, python-format msgid "Failed to copy a file in html_static_file: %s: %r" -msgstr "" +msgstr "在 html_static_file 中複製一個檔案失敗: %s: %r " #: sphinx/builders/html/__init__.py:838 msgid "copying static files" -msgstr "" +msgstr "正在複製靜態檔案" #: sphinx/builders/html/__init__.py:854 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "無法複製靜態檔案 %r" #: sphinx/builders/html/__init__.py:859 msgid "copying extra files" -msgstr "" +msgstr "正在複製額外檔案" #: sphinx/builders/html/__init__.py:865 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "無法複製額外檔案 %r" #: sphinx/builders/html/__init__.py:872 #, python-format msgid "Failed to write build info file: %r" -msgstr "" +msgstr "寫入 build info 檔失敗: %r" #: sphinx/builders/html/__init__.py:920 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "" +msgstr "搜尋索引無法被載入,但不是所有的文件都會被建置:索引將會是不完全的。" #: sphinx/builders/html/__init__.py:981 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "" +msgstr "頁面 %s 在 html_sidebars 中符合兩個型樣: %r 和 %r" #: sphinx/builders/html/__init__.py:1074 #, python-format msgid "" "a Unicode error occurred when rendering the page %s. Please make sure all " "config values that contain non-ASCII content are Unicode strings." -msgstr "" +msgstr "在呈現頁面 %s 時發生了一個 Unicode 錯誤。請確認所有包含 non-ASCII 內容的組態值都是 Unicode 字串。" #: sphinx/builders/html/__init__.py:1079 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "在呈現頁面 %s 時發生了一個錯誤。\n原因: %r" #: sphinx/builders/html/__init__.py:1108 msgid "dumping object inventory" -msgstr "" +msgstr "正在傾印物件庫存" #: sphinx/builders/html/__init__.py:1113 #, python-format msgid "dumping search index in %s" -msgstr "" +msgstr "正在傾印搜尋索引於 %s" #: sphinx/builders/html/__init__.py:1155 #, python-format @@ -1036,48 +1036,48 @@ msgstr "無效的 js_file: %r, 已略過" #: sphinx/builders/html/__init__.py:1242 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "多個 math_renderer 已被註冊。但是沒有 math_renderer 被選擇。" #: sphinx/builders/html/__init__.py:1245 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "未知的 math_renderer %r 被給予。" #: sphinx/builders/html/__init__.py:1253 #, python-format msgid "html_extra_path entry %r does not exist" -msgstr "" +msgstr "html_extra_path 項目 %r 不存在" #: sphinx/builders/html/__init__.py:1257 #, python-format msgid "html_extra_path entry %r is placed inside outdir" -msgstr "" +msgstr "html_extra_path 項目 %r 被放入 outdir" #: sphinx/builders/html/__init__.py:1266 #, python-format msgid "html_static_path entry %r does not exist" -msgstr "" +msgstr "html_static_path 項目 %r 不存在" #: sphinx/builders/html/__init__.py:1270 #, python-format msgid "html_static_path entry %r is placed inside outdir" -msgstr "" +msgstr "html_static_path 項目 %r 被放入 outdir" #: sphinx/builders/html/__init__.py:1279 sphinx/builders/latex/__init__.py:422 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "標誌檔案 %r 不存在" #: sphinx/builders/html/__init__.py:1288 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "favicon 檔案 %r 不存在" #: sphinx/builders/html/__init__.py:1308 msgid "" "html_add_permalinks has been deprecated since v3.5.0. Please use " "html_permalinks and html_permalinks_icon instead." -msgstr "" +msgstr "html_add_permalinks 從 v3.5.0 開始已被廢止。請改用 html_permalinks 和 html_permalinks_icon。" #: sphinx/builders/html/__init__.py:1340 #, python-format @@ -1087,23 +1087,23 @@ msgstr "%s %s 說明文件" #: sphinx/builders/latex/__init__.py:105 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "LaTeX 檔案在 %(outdir)s 。" #: sphinx/builders/latex/__init__.py:107 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\n在該目錄中執行 'make' 以透過 (pdf)latex 執行這些\n(在此使用 'make latexpdf' 以自動執行)" #: sphinx/builders/latex/__init__.py:143 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "未找到 \"latex_documents\" 組態值;不會編寫任何文件" #: sphinx/builders/latex/__init__.py:151 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "" +msgstr "\"latex_documents\" 組態值引用未知的文件 %s" #: sphinx/builders/latex/__init__.py:184 sphinx/domains/std.py:564 #: sphinx/templates/latex/latex.tex_t:97 @@ -1213,7 +1213,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:98 sphinx/cmd/quickstart.py:462 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:573 +#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:577 msgid "For more information, visit ." msgstr "" @@ -2395,39 +2395,39 @@ msgstr "符號" #: sphinx/environment/adapters/toctree.py:143 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "偵測到循環的 toctree 參照,忽略中: %s <- %s" #: sphinx/environment/adapters/toctree.py:162 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" -msgstr "" +msgstr "toctree 包含了到文件 %r 的參照,該文件沒有標題:不會產生任何鏈接" #: sphinx/environment/collectors/asset.py:80 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "影像檔案無法讀取: %s" #: sphinx/environment/collectors/asset.py:99 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "影像檔案 %s 無法讀取: %s" #: sphinx/environment/collectors/asset.py:125 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "下載檔案無法讀取: %s" #: sphinx/environment/collectors/toctree.py:177 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "" +msgstr "%s 已經被指定段落編號(巢狀編號的 toctree?)" #: sphinx/ext/apidoc.py:78 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "將會建立檔案 %s 。" #: sphinx/ext/apidoc.py:304 msgid "" @@ -2439,196 +2439,196 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "" +msgstr "\n在 中遞迴查找 Python 模組及套件,並在 中\n為每個套件建立一個帶有 automodule 指令的 reST 檔。\n\n 可以是檔案及/或資料夾型樣,它們將在生成時被\n移除。\n\n備註:在預設情況,此腳本不會重寫已經被建立的檔案。" #: sphinx/ext/apidoc.py:317 msgid "path to module to document" -msgstr "" +msgstr "要生成文件的模組路徑" #: sphinx/ext/apidoc.py:319 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "" +msgstr "fnmatch 風格的檔案及/或資料夾模式,將在生成時移除。" #: sphinx/ext/apidoc.py:324 msgid "directory to place all output" -msgstr "" +msgstr "要放置所有輸出的資料夾" #: sphinx/ext/apidoc.py:329 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "能顯示 TOC 的子模組最大深度(預設值:4)" #: sphinx/ext/apidoc.py:332 msgid "overwrite existing files" -msgstr "" +msgstr "重寫已存在的檔案" #: sphinx/ext/apidoc.py:335 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "跟隨符號鏈接。與 collective.recipe.omelette 結合時很有用。" #: sphinx/ext/apidoc.py:338 msgid "run the script without creating files" -msgstr "" +msgstr "執行腳本而不建立檔案" #: sphinx/ext/apidoc.py:341 msgid "put documentation for each module on its own page" -msgstr "" +msgstr "為每個模組在它自己的頁面置放說明文件" #: sphinx/ext/apidoc.py:344 msgid "include \"_private\" modules" -msgstr "" +msgstr "包含 \"_private\" 模組" #: sphinx/ext/apidoc.py:346 msgid "filename of table of contents (default: modules)" -msgstr "" +msgstr "目錄的檔名(預設值:模組)" #: sphinx/ext/apidoc.py:348 msgid "don't create a table of contents file" -msgstr "" +msgstr "不要建立目錄檔案" #: sphinx/ext/apidoc.py:351 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "" +msgstr "不要為模組/套件建立標頭(例如:當說明字串已經包含它們時)" #: sphinx/ext/apidoc.py:356 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr "在子模組說明文件之前置放模組說明文件" #: sphinx/ext/apidoc.py:360 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "" +msgstr "根據 PEP-0420 隱式命名空間規範來解譯模組路徑" #: sphinx/ext/apidoc.py:364 msgid "file suffix (default: rst)" -msgstr "" +msgstr "檔案後綴(預設值:rst)" #: sphinx/ext/apidoc.py:366 msgid "generate a full project with sphinx-quickstart" -msgstr "" +msgstr "以 sphinx-quickstart 生成一個完全的專案" #: sphinx/ext/apidoc.py:369 msgid "append module_path to sys.path, used when --full is given" -msgstr "" +msgstr "附加 module_path 到 sys.path,在給予 --full 時使用" #: sphinx/ext/apidoc.py:371 msgid "project name (default: root module name)" -msgstr "" +msgstr "專案名稱(預設值:根模組名稱)" #: sphinx/ext/apidoc.py:373 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "專案作者(們),在給予 --full 時使用" #: sphinx/ext/apidoc.py:375 msgid "project version, used when --full is given" -msgstr "" +msgstr "專案版本,在給予 --full 時使用" #: sphinx/ext/apidoc.py:377 msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "" +msgstr "專案發布,在給予 --full 時使用,預設為 --doc-version" #: sphinx/ext/apidoc.py:380 msgid "extension options" -msgstr "" +msgstr "擴充套件選項" #: sphinx/ext/apidoc.py:413 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s 不是資料夾" #: sphinx/ext/coverage.py:38 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "無效的 regex %r 在 %s" #: sphinx/ext/coverage.py:47 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "" +msgstr "來源的涵蓋測試已結束,在 %(outdir)spython.txt 中查看結果。" #: sphinx/ext/coverage.py:61 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "無效的 regex %r 在 coverage_c_regexes" #: sphinx/ext/coverage.py:122 #, python-format msgid "undocumented c api: %s [%s] in file %s" -msgstr "" +msgstr "未文件化的 c api: %s [%s] 在檔案 %s 中" #: sphinx/ext/coverage.py:154 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "模組 %s 無法被 import: %s" #: sphinx/ext/coverage.py:250 #, python-format msgid "undocumented python function: %s :: %s" -msgstr "" +msgstr "未文件化的 python 函式: %s :: %s" #: sphinx/ext/coverage.py:266 #, python-format msgid "undocumented python class: %s :: %s" -msgstr "" +msgstr "未文件化的 python class: %s :: %s" #: sphinx/ext/coverage.py:279 #, python-format msgid "undocumented python method: %s :: %s :: %s" -msgstr "" +msgstr "未文件化的 python method: %s :: %s :: %s" #: sphinx/ext/doctest.py:117 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "" +msgstr "在 '%s' 選項中遺漏 '+' 或 '-'。" #: sphinx/ext/doctest.py:122 #, python-format msgid "'%s' is not a valid option." -msgstr "" +msgstr "'%s' 不是有效的選項" #: sphinx/ext/doctest.py:136 #, python-format msgid "'%s' is not a valid pyversion option" -msgstr "" +msgstr "'%s' 不是有效的 pyversion 選項" #: sphinx/ext/doctest.py:219 msgid "invalid TestCode type" -msgstr "" +msgstr "無效的 TestCode 型別" #: sphinx/ext/doctest.py:277 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "來源的 doctests 測試已結束,在 %(outdir)s/output.txt 中查看結果。" #: sphinx/ext/doctest.py:427 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "" +msgstr "在 %s 區塊中的 %s:%s 沒有程式碼/輸出" #: sphinx/ext/doctest.py:513 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "" +msgstr "正在忽略無效的 doctest 碼: %r" #: sphinx/ext/duration.py:71 msgid "" "====================== slowest reading durations =======================" -msgstr "" +msgstr "====================== 最慢的讀取歷時 =======================" #: sphinx/ext/extlinks.py:77 #, python-format msgid "" "hardcoded link %r could be replaced by an extlink (try using %r instead)" -msgstr "" +msgstr "hardcoded link %r 可以被一個 extlink 所取代(試試改用 %r)" #: sphinx/ext/extlinks.py:96 #, python-format @@ -2693,7 +2693,7 @@ msgstr "" #: sphinx/ext/graphviz.py:363 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "點碼 %r: %s" #: sphinx/ext/graphviz.py:376 sphinx/ext/graphviz.py:384 #, python-format @@ -2710,7 +2710,7 @@ msgid "" "Unable to run the image conversion command %r. 'sphinx.ext.imgconverter' requires ImageMagick by default. Ensure it is installed, or set the 'image_converter' option to a custom conversion command.\n" "\n" "Traceback: %s" -msgstr "" +msgstr "無法執行影像轉換命令 %r。 'sphinx.ext.imgconverter' 預設為需要 ImageMagick。請確認它已被安裝,或是設定 'image_converter' 選項為一個自訂轉換命令。\n\n回溯: %s" #: sphinx/ext/imgconverter.py:42 sphinx/ext/imgconverter.py:66 #, python-format @@ -2744,12 +2744,12 @@ msgstr "" #: sphinx/ext/imgmath.py:292 #, python-format msgid "display latex %r: %s" -msgstr "" +msgstr "顯示 latex %r: %s" #: sphinx/ext/imgmath.py:318 #, python-format msgid "inline latex %r: %s" -msgstr "" +msgstr "行內 latex %r: %s" #: sphinx/ext/imgmath.py:325 sphinx/ext/mathjax.py:47 msgid "Permalink to this equation" @@ -2758,22 +2758,22 @@ msgstr "本公式的永久連結" #: sphinx/ext/intersphinx.py:172 #, python-format msgid "intersphinx inventory has moved: %s -> %s" -msgstr "" +msgstr "intersphinx 庫存已移動: %s -> %s" #: sphinx/ext/intersphinx.py:203 #, python-format msgid "loading intersphinx inventory from %s..." -msgstr "" +msgstr "正在從 %s 載入 intersphinx 庫存... " #: sphinx/ext/intersphinx.py:217 msgid "" "encountered some issues with some of the inventories, but they had working " "alternatives:" -msgstr "" +msgstr "從一些庫存中遇到一些問題,但他們已在進行替代方案:" #: sphinx/ext/intersphinx.py:223 msgid "failed to reach any of the inventories with the following issues:" -msgstr "" +msgstr "無法到達任何的庫存,遇到以下問題:" #: sphinx/ext/intersphinx.py:268 #, python-format @@ -2783,22 +2783,22 @@ msgstr "(於 %s v%s)" #: sphinx/ext/intersphinx.py:270 #, python-format msgid "(in %s)" -msgstr "" +msgstr "(於 %s)" #: sphinx/ext/intersphinx.py:494 #, python-format msgid "inventory for external cross-reference not found: %s" -msgstr "" +msgstr "未找到外部交叉參照的清單: %s" #: sphinx/ext/intersphinx.py:500 #, python-format msgid "role for external cross-reference not found: %s" -msgstr "" +msgstr "未找到外部交叉參照的角色: %s" #: sphinx/ext/intersphinx.py:587 #, python-format msgid "external %s:%s reference target not found: %s" -msgstr "" +msgstr "未找到外部的 %s:%s 參照目標: %s" #: sphinx/ext/intersphinx.py:612 #, python-format @@ -2874,24 +2874,24 @@ msgstr "對於 class-doc-from 選項無效的值: %s" #: sphinx/ext/autodoc/__init__.py:376 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "" +msgstr "無效的簽章給 auto%s (%r)" #: sphinx/ext/autodoc/__init__.py:493 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "在為 %s 格式化引數時有錯誤: %s" #: sphinx/ext/autodoc/__init__.py:630 sphinx/ext/autodoc/__init__.py:1683 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "遺漏屬性 %s 在物件 %s" #: sphinx/ext/autodoc/__init__.py:784 #, python-format msgid "" "autodoc: failed to determine %s.%s (%r) to be documented, the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: 決定 %s.%s (%r) 被文件化失敗,引發以下的例外:\n%s" #: sphinx/ext/autodoc/__init__.py:877 #, python-format @@ -2899,7 +2899,7 @@ msgid "" "don't know which module to import for autodocumenting %r (try placing a " "\"module\" or \"currentmodule\" directive in the document, or giving an " "explicit module name)" -msgstr "" +msgstr "不清楚要 import 哪個模組來 autodocument %r (試試看在文件中加入 \"module\" 或 \"currentmodule\" 指令,或是給予一個明確的模組名稱)" #: sphinx/ext/autodoc/__init__.py:921 #, python-format @@ -3007,7 +3007,7 @@ msgid "" "autosummary: failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "autosummary: import %s 失敗。\n可能的提示:\n%s" #: sphinx/ext/autosummary/__init__.py:333 #, python-format @@ -3031,32 +3031,32 @@ msgid "" msgstr "autosummary 會在內部產生 .rst 檔案。但是您的 source_suffix 並未包含 .rst。已省略。" #: sphinx/ext/autosummary/generate.py:151 -#: sphinx/ext/autosummary/generate.py:219 +#: sphinx/ext/autosummary/generate.py:223 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "autosummary: 無法決定 %r 被記錄,以下例外被引發:\n%s" -#: sphinx/ext/autosummary/generate.py:357 +#: sphinx/ext/autosummary/generate.py:361 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 正在產生 autosummary 給: %s" -#: sphinx/ext/autosummary/generate.py:361 +#: sphinx/ext/autosummary/generate.py:365 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] 正在寫入 %s" -#: sphinx/ext/autosummary/generate.py:404 +#: sphinx/ext/autosummary/generate.py:408 #, python-format msgid "" "[autosummary] failed to import %s.\n" "Possible hints:\n" "%s" -msgstr "" +msgstr "[autosummary] import %s 失敗。\n可能的提示:\n%s" -#: sphinx/ext/autosummary/generate.py:574 +#: sphinx/ext/autosummary/generate.py:578 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3071,35 +3071,35 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n使用 autosummary 指令產生 ReStructuredText。\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的一個前端。它會從給定的\n輸入檔案中所包含的 autosummary 指令,產生 reStructuredText 檔案。\n\nautosummary 指令的格式被記錄在 ``sphinx.ext.autosummary`` Python 模組中,\n它可以使用此方法來讀取::\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:591 +#: sphinx/ext/autosummary/generate.py:595 msgid "source files to generate rST files for" msgstr "原始檔案以產生 rST 檔案給" -#: sphinx/ext/autosummary/generate.py:595 +#: sphinx/ext/autosummary/generate.py:599 msgid "directory to place all output in" msgstr "資料夾來放置所有輸出在" -#: sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/autosummary/generate.py:602 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "檔案的預設後綴(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:602 +#: sphinx/ext/autosummary/generate.py:606 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "自訂模板資料夾(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:606 +#: sphinx/ext/autosummary/generate.py:610 #, python-format msgid "document imported members (default: %(default)s)" msgstr "文件引入成員(預設: %(default)s )" -#: sphinx/ext/autosummary/generate.py:610 +#: sphinx/ext/autosummary/generate.py:614 #, python-format msgid "" "document exactly the members in module __all__ attribute. (default: " "%(default)s)" -msgstr "" +msgstr "文件確實是在模組 __all__ 屬性中的成員。(預設值: %(default)s)" #: sphinx/ext/napoleon/__init__.py:339 sphinx/ext/napoleon/docstring.py:694 msgid "Keyword Arguments" @@ -3432,7 +3432,7 @@ msgstr "隱藏符合搜尋" #: sphinx/themes/basic/static/searchtools.js:112 msgid "" "Search finished, found ${resultCount} page(s) matching the search query." -msgstr "" +msgstr "搜尋結束,共找到 ${resultCount} 個頁面符合搜尋條件。" #: sphinx/themes/basic/static/searchtools.js:213 msgid "Searching" @@ -3552,7 +3552,7 @@ msgstr "失敗" msgid "" "Problem in %s domain: field is supposed to use role '%s', but that role is " "not in the domain." -msgstr "" +msgstr "在 %s domain 中的問題:欄位應該要用角色 '%s' ,但是那個角色並不在該 domain。" #: sphinx/util/docutils.py:256 #, python-format @@ -3623,7 +3623,7 @@ msgstr "本術語的永久連結" #: sphinx/writers/html.py:428 sphinx/writers/html.py:433 #: sphinx/writers/html5.py:387 sphinx/writers/html5.py:392 msgid "Permalink to this heading" -msgstr "" +msgstr "本標頭的永久連結" #: sphinx/writers/html.py:437 sphinx/writers/html5.py:396 msgid "Permalink to this table" From 29edce9243046962f5f024d510315133448dd3e1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 14 Jun 2022 02:49:07 +0900 Subject: [PATCH 55/59] test: Add testcase for autodoc_inherit_docstring and attributes (refs: #10539) --- .../test-ext-autodoc/target/inheritance.py | 3 + tests/test_ext_autodoc.py | 8 +++ tests/test_ext_autodoc_automodule.py | 7 ++ tests/test_ext_autodoc_configs.py | 66 +++++++++++++++++++ 4 files changed, 84 insertions(+) diff --git a/tests/roots/test-ext-autodoc/target/inheritance.py b/tests/roots/test-ext-autodoc/target/inheritance.py index 485a943c872..85d95cd742e 100644 --- a/tests/roots/test-ext-autodoc/target/inheritance.py +++ b/tests/roots/test-ext-autodoc/target/inheritance.py @@ -1,4 +1,7 @@ class Base(object): + #: docstring + inheritedattr = None + def inheritedmeth(self): """Inherited function.""" diff --git a/tests/test_ext_autodoc.py b/tests/test_ext_autodoc.py index ecd2bbce6fc..a35c6f640e5 100644 --- a/tests/test_ext_autodoc.py +++ b/tests/test_ext_autodoc.py @@ -549,6 +549,7 @@ def test_autodoc_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()', ' .. py:method:: Base.inheritedmeth()', ' .. py:method:: Base.inheritedstaticmeth(cls)' @@ -569,6 +570,7 @@ def test_autodoc_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()', ' .. py:method:: Base.inheritedmeth()', ' .. py:method:: Base.inheritedstaticmeth(cls)' @@ -601,6 +603,7 @@ def test_autodoc_exclude_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()' ] @@ -618,6 +621,7 @@ def test_autodoc_exclude_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()' ] @@ -628,6 +632,7 @@ def test_autodoc_exclude_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()', ' .. py:method:: Base.inheritedstaticmeth(cls)' ] @@ -639,6 +644,7 @@ def test_autodoc_exclude_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()', ] @@ -648,6 +654,7 @@ def test_autodoc_exclude_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()', ] @@ -658,6 +665,7 @@ def test_autodoc_exclude_members(app): actual = do_autodoc(app, 'class', 'target.inheritance.Base', options) assert list(filter(lambda l: '::' in l, actual)) == [ '.. py:class:: Base()', + ' .. py:attribute:: Base.inheritedattr', ' .. py:method:: Base.inheritedclassmeth()', ' .. py:method:: Base.inheritedmeth()', ' .. py:method:: Base.inheritedstaticmeth(cls)' diff --git a/tests/test_ext_autodoc_automodule.py b/tests/test_ext_autodoc_automodule.py index 8208d86f661..71b23679d96 100644 --- a/tests/test_ext_autodoc_automodule.py +++ b/tests/test_ext_autodoc_automodule.py @@ -133,6 +133,13 @@ def test_automodule_inherited_members(app): ' :module: target.inheritance', '', '', + ' .. py:attribute:: Base.inheritedattr', + ' :module: target.inheritance', + ' :value: None', + '', + ' docstring', + '', + '', ' .. py:method:: Base.inheritedclassmeth()', ' :module: target.inheritance', ' :classmethod:', diff --git a/tests/test_ext_autodoc_configs.py b/tests/test_ext_autodoc_configs.py index 0011f450b5a..f40f3354e11 100644 --- a/tests/test_ext_autodoc_configs.py +++ b/tests/test_ext_autodoc_configs.py @@ -277,6 +277,72 @@ def test_autodoc_inherit_docstrings(app): ] +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_autodoc_inherit_docstrings_for_inherited_members(app): + options = {"members": None, + "inherited-members": None} + + assert app.config.autodoc_inherit_docstrings is True # default + actual = do_autodoc(app, 'class', 'target.inheritance.Derived', options) + assert list(actual) == [ + '', + '.. py:class:: Derived()', + ' :module: target.inheritance', + '', + '', + ' .. py:attribute:: Derived.inheritedattr', + ' :module: target.inheritance', + ' :value: None', + '', + ' docstring', + '', + '', + ' .. py:method:: Derived.inheritedclassmeth()', + ' :module: target.inheritance', + ' :classmethod:', + '', + ' Inherited class method.', + '', + '', + ' .. py:method:: Derived.inheritedmeth()', + ' :module: target.inheritance', + '', + ' Inherited function.', + '', + '', + ' .. py:method:: Derived.inheritedstaticmeth(cls)', + ' :module: target.inheritance', + ' :staticmethod:', + '', + ' Inherited static method.', + '', + ] + + # disable autodoc_inherit_docstrings + app.config.autodoc_inherit_docstrings = False + actual = do_autodoc(app, 'class', 'target.inheritance.Derived', options) + assert list(actual) == [ + '', + '.. py:class:: Derived()', + ' :module: target.inheritance', + '', + '', + ' .. py:method:: Derived.inheritedclassmeth()', + ' :module: target.inheritance', + ' :classmethod:', + '', + ' Inherited class method.', + '', + '', + ' .. py:method:: Derived.inheritedstaticmeth(cls)', + ' :module: target.inheritance', + ' :staticmethod:', + '', + ' Inherited static method.', + '', + ] + + @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodoc_docstring_signature(app): options = {"members": None, "special-members": "__init__, __new__"} From 709602437df850d5538a4fe899a50625c01a0f80 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Tue, 14 Jun 2022 03:05:49 +0900 Subject: [PATCH 56/59] Update CHANGES for PR #10539 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index a2597f277d7..86605f34b25 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,8 @@ Features added Bugs fixed ---------- +* #10538: autodoc: Inherited class attribute having docstring is documented even + if :confval:`autodoc_inherit_docstring` is disabled * #10509: autosummary: autosummary fails with a shared library * #10497: py domain: Failed to resolve strings in Literal. Patch by Adam Turner. * #10523: HTML Theme: Fix double brackets on citation references in Docutils 0.18+. From ed6970311349e54ceebe24ede255378fcd9d94e5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 15 Jun 2022 02:37:05 +0900 Subject: [PATCH 57/59] Update CHANGES for PR #10535 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 86605f34b25..a5830628092 100644 --- a/CHANGES +++ b/CHANGES @@ -25,6 +25,7 @@ Bugs fixed * #10497: py domain: Failed to resolve strings in Literal. Patch by Adam Turner. * #10523: HTML Theme: Fix double brackets on citation references in Docutils 0.18+. Patch by Adam Turner. +* #10534: Missing CSS for nav.contents in Docutils 0.18+. Patch by Adam Turner. Testing -------- From 907d27dc6506c542c11a7dd16b560eb4be7da5fc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 17 Jun 2022 02:17:08 +0900 Subject: [PATCH 58/59] Bump to 5.0.2 final --- CHANGES | 16 ++-------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 16 deletions(-) diff --git a/CHANGES b/CHANGES index a5830628092..d2d98db75c8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,14 +1,5 @@ -Release 5.0.2 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- +Release 5.0.2 (released Jun 17, 2022) +===================================== Features added -------------- @@ -27,9 +18,6 @@ Bugs fixed Patch by Adam Turner. * #10534: Missing CSS for nav.contents in Docutils 0.18+. Patch by Adam Turner. -Testing --------- - Release 5.0.1 (released Jun 03, 2022) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 113dc8bfe89..1fb9714058c 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,7 +21,7 @@ warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '5.0.2+' +__version__ = '5.0.2' __released__ = '5.0.2' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -32,7 +32,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 0, 2, 'beta', 0) +version_info = (5, 0, 2, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From 949984c4e26671fdf5490c33cf90d4db118aaa86 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 17 Jun 2022 02:18:26 +0900 Subject: [PATCH 59/59] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index d2d98db75c8..4afa807b69e 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 5.0.3 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 5.0.2 (released Jun 17, 2022) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 1fb9714058c..0bf99b144bf 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -21,8 +21,8 @@ warnings.filterwarnings('ignore', 'The frontend.Option class .*', DeprecationWarning, module='docutils.frontend') -__version__ = '5.0.2' -__released__ = '5.0.2' # used when Sphinx builds its own docs +__version__ = '5.0.3+' +__released__ = '5.0.3' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -32,7 +32,7 @@ #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (5, 0, 2, 'final', 0) +version_info = (5, 0, 3, 'beta', 0) package_dir = path.abspath(path.dirname(__file__))