From 8356260554fee9ebd26a2c11cdf039af36cd951e Mon Sep 17 00:00:00 2001 From: "oleg.hoefling" Date: Sat, 30 Oct 2021 17:57:17 +0200 Subject: [PATCH 1/9] extlinks: replacement suggestions for hardcoded links Signed-off-by: oleg.hoefling --- sphinx/ext/extlinks.py | 45 +++++++++++++++++++ .../conf.py | 5 +++ .../index.rst | 22 +++++++++ .../test-ext-extlinks-hardcoded-urls/conf.py | 2 + .../index.rst | 28 ++++++++++++ tests/test_ext_extlinks.py | 36 +++++++++++++++ 6 files changed, 138 insertions(+) create mode 100644 tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/conf.py create mode 100644 tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/index.rst create mode 100644 tests/roots/test-ext-extlinks-hardcoded-urls/conf.py create mode 100644 tests/roots/test-ext-extlinks-hardcoded-urls/index.rst create mode 100644 tests/test_ext_extlinks.py diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 0af335686..4791a68ed 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -26,6 +26,7 @@ """ import warnings +import re from typing import Any, Dict, List, Tuple from docutils import nodes, utils @@ -35,10 +36,53 @@ from docutils.parsers.rst.states import Inliner import sphinx from sphinx.application import Sphinx from sphinx.deprecation import RemovedInSphinx60Warning +from sphinx.locale import __ +from sphinx.transforms.post_transforms import SphinxPostTransform +from sphinx.util import logging from sphinx.util.nodes import split_explicit_title from sphinx.util.typing import RoleFunction +class ExternalLinksChecker(SphinxPostTransform): + """ + For each external link, check if it can be replaced by an extlink. + + We treat each ``reference`` node without ``internal`` attribute as an external link. + """ + + default_priority = 900 + + def run(self, **kwargs: Any) -> None: + for refnode in self.document.traverse(nodes.reference): + self.check_uri(refnode) + + def check_uri(self, refnode: nodes.reference) -> None: + """ + If the URI in ``refnode`` has a replacement in ``extlinks``, + emit a warning with a replacement suggestion. + """ + if 'internal' in refnode or 'refuri' not in refnode: + return + + uri = refnode['refuri'] + lineno = sphinx.util.nodes.get_node_line(refnode) + extlinks_config = getattr(self.app.config, 'extlinks', dict()) + + for alias, (base_uri, caption) in extlinks_config.items(): + uri_pattern = re.compile(base_uri.replace('%s', '(?P.+)')) + match = uri_pattern.match(uri) + if match and match.groupdict().get('value'): + # build a replacement suggestion + replacement = f":{alias}:`{match.groupdict().get('value')}`" + location = (self.env.docname, lineno) + logger.warning( + 'hardcoded link %r could be replaced by an extlink (try using %r instead)', + uri, + replacement, + location=location, + ) + + def make_link_role(name: str, base_url: str, caption: str) -> RoleFunction: # Check whether we have base_url and caption strings have an '%s' for # expansion. If not, fall back the the old behaviour and use the string as @@ -85,4 +129,5 @@ def setup_link_roles(app: Sphinx) -> None: def setup(app: Sphinx) -> Dict[str, Any]: app.add_config_value('extlinks', {}, 'env') app.connect('builder-inited', setup_link_roles) + app.add_post_transform(ExternalLinksChecker) return {'version': sphinx.__display_version__, 'parallel_read_safe': True} diff --git a/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/conf.py b/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/conf.py new file mode 100644 index 000000000..f97077300 --- /dev/null +++ b/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/conf.py @@ -0,0 +1,5 @@ +extensions = ['sphinx.ext.extlinks'] +extlinks = { + 'user': ('https://github.com/%s', '@%s'), + 'repo': ('https://github.com/%s', 'project %s'), +} diff --git a/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/index.rst b/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/index.rst new file mode 100644 index 000000000..c8b008ea2 --- /dev/null +++ b/tests/roots/test-ext-extlinks-hardcoded-urls-multiple-replacements/index.rst @@ -0,0 +1,22 @@ +test-ext-extlinks-hardcoded-urls +================================ + +.. Links generated by extlinks extension should not raise any warnings. +.. Only hardcoded URLs are affected. + +:user:`octocat` + +:repo:`sphinx-doc/sphinx` + +.. hardcoded replaceable link which can be replaced as +.. :repo:`octocat` or :user:`octocat` + +https://github.com/octocat + +`inline replaceable link `_ + +`replaceable link`_ + +.. hyperlinks + +.. _replaceable link: https://github.com/octocat diff --git a/tests/roots/test-ext-extlinks-hardcoded-urls/conf.py b/tests/roots/test-ext-extlinks-hardcoded-urls/conf.py new file mode 100644 index 000000000..0fa9f8c76 --- /dev/null +++ b/tests/roots/test-ext-extlinks-hardcoded-urls/conf.py @@ -0,0 +1,2 @@ +extensions = ['sphinx.ext.extlinks'] +extlinks = {'issue': ('https://github.com/sphinx-doc/sphinx/issues/%s', 'issue %s')} diff --git a/tests/roots/test-ext-extlinks-hardcoded-urls/index.rst b/tests/roots/test-ext-extlinks-hardcoded-urls/index.rst new file mode 100644 index 000000000..ada6f07a6 --- /dev/null +++ b/tests/roots/test-ext-extlinks-hardcoded-urls/index.rst @@ -0,0 +1,28 @@ +test-ext-extlinks-hardcoded-urls +================================ + +.. Links generated by extlinks extension should not raise any warnings. +.. Only hardcoded URLs are affected. + +:issue:`1` + +.. hardcoded replaceable link + +https://github.com/sphinx-doc/sphinx/issues/1 + +`inline replaceable link `_ + +`replaceable link`_ + +.. hardcoded non-replaceable link + +https://github.com/sphinx-doc/sphinx/pulls/1 + +`inline non-replaceable link `_ + +`non-replaceable link`_ + +.. hyperlinks + +.. _replaceable link: https://github.com/sphinx-doc/sphinx/issues/1 +.. _non-replaceable link: https://github.com/sphinx-doc/sphinx/pulls/1 diff --git a/tests/test_ext_extlinks.py b/tests/test_ext_extlinks.py new file mode 100644 index 000000000..2be9789f0 --- /dev/null +++ b/tests/test_ext_extlinks.py @@ -0,0 +1,36 @@ +import pytest + + +@pytest.mark.sphinx('html', testroot='ext-extlinks-hardcoded-urls') +def test_replaceable_uris_emit_extlinks_warnings(app, warning): + app.build() + warning_output = warning.getvalue() + # there should be exactly three warnings for replaceable URLs + message = ( + "WARNING: hardcoded link 'https://github.com/sphinx-doc/sphinx/issues/1' " + "could be replaced by an extlink (try using ':issue:`1`' instead)" + ) + assert f"index.rst:11: {message}" in warning_output + assert f"index.rst:13: {message}" in warning_output + assert f"index.rst:15: {message}" in warning_output + + +@pytest.mark.sphinx('html', testroot='ext-extlinks-hardcoded-urls-multiple-replacements') +def test_all_replacements_suggested_if_multiple_replacements_possible(app, warning): + app.build() + warning_output = warning.getvalue() + # there should be six warnings for replaceable URLs, three pairs per link + message = ( + "WARNING: hardcoded link 'https://github.com/octocat' " + "could be replaced by an extlink (try using ':user:`octocat`' instead)" + ) + assert f"index.rst:14: {message}" in warning_output + assert f"index.rst:16: {message}" in warning_output + assert f"index.rst:18: {message}" in warning_output + message = ( + "WARNING: hardcoded link 'https://github.com/octocat' " + "could be replaced by an extlink (try using ':repo:`octocat`' instead)" + ) + assert f"index.rst:14: {message}" in warning_output + assert f"index.rst:16: {message}" in warning_output + assert f"index.rst:18: {message}" in warning_output From 629145a0e8fe2e08e40ad627bb4ee70fb4e1c5f8 Mon Sep 17 00:00:00 2001 From: "oleg.hoefling" Date: Sat, 30 Oct 2021 18:07:17 +0200 Subject: [PATCH 2/9] replace hardcoded refs in docs with extlinks Signed-off-by: oleg.hoefling --- doc/tutorial/narrative-documentation.rst | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/doc/tutorial/narrative-documentation.rst b/doc/tutorial/narrative-documentation.rst index b1f23b0ff..a81204d4c 100644 --- a/doc/tutorial/narrative-documentation.rst +++ b/doc/tutorial/narrative-documentation.rst @@ -91,9 +91,7 @@ you created earlier. Alternatively, you can also add a cross-reference to an arbitrary part of the project. For that, you need to use the :rst:role:`ref` role, and add an -explicit *label* that acts as `a target`__. - -__ https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#hyperlink-targets +explicit *label* that acts as :duref:`a target `. For example, to reference the "Installation" subsection, add a label right before the heading, as follows: From bc5dd0e6f379c4bc9f442a87225257a03d25d991 Mon Sep 17 00:00:00 2001 From: "oleg.hoefling" Date: Sat, 30 Oct 2021 18:09:03 +0200 Subject: [PATCH 3/9] add changelog entry Signed-off-by: oleg.hoefling --- CHANGES | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index b35f126d7..c62d16c1f 100644 --- a/CHANGES +++ b/CHANGES @@ -12,6 +12,9 @@ Deprecated Features added -------------- + +* #9800: extlinks: Emit warning if a hardcoded link is replaceable + by an extlink, suggesting a replacement. * #9815: html theme: Wrap sidebar components in div to allow customizing their layout via CSS From 7b318d8acb4d982e4d5cdccb69395c6a8519f556 Mon Sep 17 00:00:00 2001 From: Oleg Hoefling Date: Fri, 12 Nov 2021 09:56:16 +0100 Subject: [PATCH 4/9] apply review suggestions Signed-off-by: Oleg Hoefling --- sphinx/ext/extlinks.py | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 4791a68ed..59c5d9309 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -42,6 +42,8 @@ from sphinx.util import logging from sphinx.util.nodes import split_explicit_title from sphinx.util.typing import RoleFunction +logger = logging.getLogger(__name__) + class ExternalLinksChecker(SphinxPostTransform): """ @@ -50,7 +52,7 @@ class ExternalLinksChecker(SphinxPostTransform): We treat each ``reference`` node without ``internal`` attribute as an external link. """ - default_priority = 900 + default_priority = 100 def run(self, **kwargs: Any) -> None: for refnode in self.document.traverse(nodes.reference): @@ -65,21 +67,18 @@ class ExternalLinksChecker(SphinxPostTransform): return uri = refnode['refuri'] - lineno = sphinx.util.nodes.get_node_line(refnode) - extlinks_config = getattr(self.app.config, 'extlinks', dict()) - for alias, (base_uri, caption) in extlinks_config.items(): + for alias, (base_uri, caption) in self.app.config.extlinks.items(): uri_pattern = re.compile(base_uri.replace('%s', '(?P.+)')) match = uri_pattern.match(uri) if match and match.groupdict().get('value'): # build a replacement suggestion replacement = f":{alias}:`{match.groupdict().get('value')}`" - location = (self.env.docname, lineno) logger.warning( - 'hardcoded link %r could be replaced by an extlink (try using %r instead)', + __('hardcoded link %r could be replaced by an extlink (try using %r instead)'), uri, replacement, - location=location, + location=refnode, ) From 15c506b86b2260cfbbe55f94fd2efd84c8968386 Mon Sep 17 00:00:00 2001 From: tk0miya Date: Sun, 28 Nov 2021 00:11:57 +0000 Subject: [PATCH 5/9] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 7937 -> 7937 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/bg/LC_MESSAGES/sphinx.mo | Bin 501 -> 501 bytes sphinx/locale/bg/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 5661 -> 5661 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 2409 -> 2409 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8476 -> 8476 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 13369 -> 13369 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 82688 -> 82688 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo | Bin 472 -> 472 bytes sphinx/locale/en_FR/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 1856 -> 1856 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 76686 -> 76709 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 75 +++++++++--------- sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo | Bin 512 -> 512 bytes sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 99297 -> 99297 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 511 -> 511 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 17382 -> 17382 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 11774 -> 11774 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 61068 -> 61068 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10217 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 79780 -> 79780 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 83432 -> 83432 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 1997 -> 1997 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 8985 -> 8985 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/nl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 19644 -> 19643 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 76 ++++++++++--------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 29929 -> 29929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 502 -> 502 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 73 ++++++++++-------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 8220 -> 8220 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 68932 -> 68932 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 5488 -> 5488 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/sphinx.pot | 71 +++++++++-------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 9408 -> 9408 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 593 -> 593 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 6834 -> 6834 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 6799 -> 6799 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 71 +++++++++-------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 5966 -> 5966 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 71 +++++++++-------- 66 files changed, 1302 insertions(+), 1070 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 944945f8f2e7874e815132e9c3dd9dc7356c5ef7..b870ac9643108441ead8e3dd87afc312143c0fdf 100644 GIT binary patch delta 33 jcmZp)YqZ;-EWmD|U|?WnXgFC*K!L*u%Gn$wu$~V9i|Pmp delta 33 kcmZp)YqZ;-EWmE4U|?WnXfRnzK!L;11j5-IB(R\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2886,7 +2886,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2901,28 +2901,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3546,37 +3553,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.mo b/sphinx/locale/bg/LC_MESSAGES/sphinx.mo index c15988feffedafaaa9732f91c4a00da1ee728cf7..a8af69367951b47798e59fcde53f0a82388a08b0 100644 GIT binary patch delta 30 gcmey${FQk^C%c7$fq|8w;lv3F97a&~#vQhd0F_z@+W-In delta 30 hcmey${FQk^C%d77fq|8w!Nds)9EK(k_QoByi~y8t2+aTh diff --git a/sphinx/locale/bg/LC_MESSAGES/sphinx.po b/sphinx/locale/bg/LC_MESSAGES/sphinx.po index 5e3047747..e60ab36e5 100644 --- a/sphinx/locale/bg/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bg/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Bulgarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/bg/)\n" "MIME-Version: 1.0\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 1b7d4e59cc69ccd0ca6a626de84e930bb30fb356..b34220f20d1a99addcdb376b90f0c6d80664dd52 100644 GIT binary patch delta 33 jcmbQMGgoKB5?*!-1p@;sL&M3dc@;Q}pq$N@dA&FQrR51N delta 33 kcmbQMGgoKB5?*#g1p@;sLxahyc@;PeO(2}jmwCN70Hojv9{>OV diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index cf01e27c5..a51e0e2da 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2885,7 +2885,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,28 +2900,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,30 +2984,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,29 +3022,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "Altres canvis" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Link permanent a aquest títol" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanent a aquesta definició" @@ -3545,37 +3552,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index ee637ca5c8f01e3dfa4ffcee21939965df536be5..4658a29ca35a3682a02564a37691d1ac33f624a0 100644 GIT binary patch delta 20 bcmaDU^ipU;87sSmf`NgRq2cCQ);G)mO7{k# delta 20 bcmaDU^ipU;87sS?f`NgRp~2=_);G)mN}UFo diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 6859f3849..d0852b230 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2885,7 +2885,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,28 +2900,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,30 +2984,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,29 +3022,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3545,37 +3552,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 61823bda32c9bab65e090d6cc34212f10f45ec65..594d6a37db3973ca4793b9959eda80e39913727b 100644 GIT binary patch delta 33 jcmbQ^G{kjN<>0F#LbUjP6A diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index fb0ce4fac..674525133 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2886,7 +2886,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2901,28 +2901,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "Ostatní změny" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Trvalý odkaz na tuto definici" @@ -3546,37 +3553,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Permalink k této tabulce" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Permalink k tomuto kódu" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Permalink k tomuto obrázku" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index c281fb7cc449cdf4b7fab15339ef8d13296343fe..79dc7ca0dd132e8ef0ae4f3958d92c4aa503bc37 100644 GIT binary patch delta 33 jcmdm)u`^?XkpjDgf`NgRq2Xjp1qBWxC}(q`!VO^nsw@dv delta 33 kcmdm)u`^?XkpjD+f`NgRp}}NJ1qBX669{K>qQVVf0I4SlO8@`> diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index b94f113d1..d4e2c0a40 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" @@ -1204,7 +1204,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2888,7 +2888,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,28 +2903,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2987,30 +2987,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3025,29 +3025,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Nøgleordsargumenter" @@ -3373,14 +3380,14 @@ msgid "Other changes" msgstr "Andre ændringer" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Permalink til denne overskrift" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink til denne definition" @@ -3548,37 +3555,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Permahenvisning til denne tabel" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Permahenvisning til denne kode" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Permahenvisning til dette billede" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Permahenvisning til dette toctree" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index ce5f7048849e45a54ffaf36be0a02e230f213dff..36f545f21c93d4ff79069dfda66150658e5dbc94 100644 GIT binary patch delta 22 dcmZo@V{K?--JsaSZlPdcU}b2yS)=L30RU1F2f6?N delta 22 dcmZo@V{K?--JsaSZm3{jU}b2qS)=L30RU0A2eJSF diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 58c546fe3..f9f8fb81a 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" @@ -1203,7 +1203,7 @@ msgid "job number should be a positive number" msgstr "ο αριθμός εργασίας θα πρέπει να είναι θετικός αριθμός" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2887,7 +2887,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2902,28 +2902,28 @@ msgstr "" msgid "Bases: %s" msgstr "Βάσεις: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2986,30 +2986,30 @@ msgid "" "contain .rst. Skipped." msgstr "Το autosummary δημιουργεί αρχεία .rst εσωτερικά. Αλλά το δικό σας source_suffix δεν περιλαμβάνει .rst. Θα παραλειφθεί." -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] δημιουργία autosummary για: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[αυτόματη περίληψη] εγγραφή στο %s" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,29 +3024,36 @@ 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:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "αρχεία πηγής για να δημιουργηθούν τα αρχεία reST" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "ο κατάλογος που θα τοποθετεί όλο το αποτέλεσμα εξόδου" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "προεπιλεγμένη επέκταση για αρχεία (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "προσαρμοσμένος κατάλογος προτύπου (προεπιλογή: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "μέλη εισαγμένα στο έγγραφο (προεπιλογή: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Ορίσματα λέξης-κλειδί" @@ -3372,14 +3379,14 @@ msgid "Other changes" msgstr "Άλλες αλλαγές" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" @@ -3547,37 +3554,37 @@ msgstr "εξαίρεση κατά την αξιολόγηση μόνο της έ msgid "default role %s not found" msgstr "ο προεπιλεγμένος ρόλος %s δεν βρέθηκε" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "δεν έχει καθοριστεί numfig_format για το %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Κανένα ID δεν έχει ανατεθεί στο κόμβο %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Δεν ήταν δυνατή η λήψη του μεγέθους της εικόνας. Η επιλογή :scale: θα αγνοηθεί." diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.mo index d0dd87138a9d9e49dff5a6a234b50c2c826d6bee..3b829a88b8e556f320b45a8f4f6a3c0caa8f46ef 100644 GIT binary patch delta 18 Zcmcb?e1myHC%c7$fq|8w;l>Fbi~u{?1+@SG delta 18 Zcmcb?e1myHC%d77fq|8w!Nv(5i~u`_1+4%8 diff --git a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po index f32d9e4d6..b9d28e35a 100644 --- a/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/en_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: English (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/en_FR/)\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 94e153a58e4eff69aee967c3050ad8ccebe4409b..61b9aa939d0ef2521b0b95b888e0e1b4f05cc1da 100644 GIT binary patch delta 20 bcmX@WcYtq$F$=qef`NgRq2XpL7B*%8J$nS% delta 20 bcmX@WcYtq$F$=q)f`NgRp}}S=7B*%8Js||q diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 1ca2c7a1e..93862c5f6 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2886,7 +2886,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2901,28 +2901,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3546,37 +3553,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index b824b224cf130320d81f0e116f7783b9c99bef2d..e3ea698bf02173c1167ac40d1d2dbf991e355806 100644 GIT binary patch delta 5813 zcmXZfd03WJ8prYTB8Z?U${HY>pn|fQnYf^Uq9!7w7C9E;Qj)k_sLfzw?-1qH%9T-h zG2v(gPUSK+8kNDgm$q1j%A}@Exn*ggmX=!c{k`YupU=6^`#jG%=RWs2SWUZkQ@i(@ zV?y1#UB(QkH|7=mag8wvxN5C2ldyT6F;&JG?*?NkaV2&`^QtjE5P&Hdg!!0_lduMh z@HiG=YNIjnxB~rf9s1)NjmB+KX}nEG6rREubT!!l;xLG~9|q!Z?27qLe=&v-mpk#J z*q!(#)PPMGiu+LSokUIGd(^l;H@TS=jfC~aL}LSL<~uPGgZ^nJl!m>CC!_jjVHiGw z0r(PzVpX&W=ww^f+w&9hhvueb^GFS)XZwJGp@ljY;-(?4-$L7VN3)r zLaqEMybaem{YOv>=)momyTLB7(?kyyHOBiibGy1k5F# zg8sM~2V(;c!gkb({WseIlCdZ8!>G(Wi|M!?^__OiVtf<%FJrpUF&&lK**Fs2sFby$ zK6J+U{TlWr4t~>^3><{MI0yZ(98>Wj$0kfBK7@t%2Ts7kxAYzM|L-*Pp?9$u&!hG% z_uqCa=A!4rs2X_)6Yxb`h}%#_nzY4cWF%?}D{vfEVhQfV=@_@we&?^~%lPJH8p^<{ zs2Of_9=M6hNYvYQfT1{wI3JavXHd_7gp)C{+4j%J5yY=Mp22kDKJOTlgHuuOuSRzg zjl(pwCx4()nftCSs)?w~RN<|-1qb6<492MUj2Vv^xC57CEDqmhOb?uaT0l8^;S)Fu zpTvM`Hy92Sy^l^8xQEiGzq8RJnYT*riF%Pcod8A z0{Ua#r?xnYP;nW?;!@Npc@Z_iz4#a&#~ds@V7H_ZwRO8ud;T42tA9sL#P>7uuMfx5 zP_?F@KA4Tmu^8{gHcZ2e&yC5%QoI#k#)0@5>Rz~kT0q7@V;;w+FaZOE6Gh69M}@mbu56?oSXJJ5biC%%Xp zFs9wUKN;2Ei0VJw&e!jt;qza60~Vq(@&fXVS&Pf?&tDpIA6~$hF#o81?py3kd=Zt} zpRq6gjyi^k$Lv8N|nN8)kmZ z*~Tk44yXN(Y~UKy`{z*;{RLHgUB9tKoPnD71T4T=7^U5Pi-sm}0DE9N&cd@e2=DmT zR`m*8Lc9Zq;owuo+>eX!Pk01VanNbI*QMBtxEWQ%`%%T%?~L8bd`whzZJ?nC528|i z3TI;Pv-Z#ABdAoipjLJcd*e+E#K?2@{eh^{F$!r7^XHVHM%w&91 zL_;%t8Wn$sIaqeyzPJ%}+`hzU4EWw=W+3Xl66}nvsDz=_0OKiX4MfDy!Xn2TF62Ctzq6#kR_eF&6R^k}kjA3{g zHNmczZASZI7veIE#fr=1TQjevLlbC6ec%S(irH7}v0R3lu^WT11(Wb|$KOyBO8D8H z`yA9(RiPHR4#(myOvf(2*gtBSZW@}=6ub>*pi=xi_QDgWiFKf=KJ=hPdd&=@~IkEdL8p^;yRP~4aW@lJ{nz~zEaz0bjs#9L6Opaa7(`le@V-R5>0Rdme6dH4A}C@E+pFQRAJ&AjUW6 zXbi#|7>a4$F3-RH@=!If5=USiYDGs-&&B)LiDaTO@HbRZZotua*y#`L?DA|~Hjbpf z8uj~5bgOv0eC>)8F_L&JD#fLkgOA`a+=-skfisD-ySU5(Y{01)=;!jB^SPKxybFD> z12y5RSc={KU7ng*?C-Mw|KCi99ypDjOrTCfT30*Mxu~sKk6P&`cne-dt+;15o9f}H z8Yn@f_&K~A>rmhCKoxtJ0J}x`0dAM)*sP>O$EO)J&>7U;b?a^iNJnLAI_fyCK&`C7 ziC@D}#Gg6_^sp10gwyDM06SwVYGQj(-}%(-G%h(0gax`xKYoZt-Q9V3Cl+7^zJgjw zoAdj53?#mU%2=nKF3(@XOuU!)MVx_`QJE?1WfxY3irq~#bc~LmQsW=w@?0zhSWH}w zgK;lT!r!n5jt{mgEXE1M6{rlgpfYn3{qZ#R#Gh~odWE<=$1fAPklbcE4Gmm^O3ACJ z8Sg`FNn)s-@if%2ti%eebK-7cF3-I%5Oqw)VlWn=GI>8LV>PI&y9u-LJq*zKzfMD` z^9#2Fk3yxi9<`^NP#?a4IzGRmj^pjO*a4QJGE$Gapf;k4b1#PBNvHp+(;paNGm?yb z8Q+Ycp_R=>Qevu6DSrZ0?X9S*^BgLrA(1Zg7mP&}X&tIoT2VLUUM$2mRPiN5*}Yzl z+QJQ}=YK`F26pwf=RFQb6KA0YbYlu`#K-U`YUL%-_W0DJ_WB5FkB_4tUPK+sYd8So zW9)rUfZCE3s0=m5aQ;JRY^UREJdCHYIo9q`eVnb06R79nV!E zlQE)?%k$6n2QiEIYg9&J5^SayqptGj65KZB@6a)pjuzCOc_rG5C;~O(NvIVqLlxy( zRJDJG%D^SmM6RI*OzLY_J`babU%;Wb1@)aDP#Fky_p={NM}2T6Y7eVX53a(|_&)05 zxPeNwPk&n*VW`uRgW9sSn2DdD7SuV(WvVbA^+)RfcE^xpJ6=%&4ZS$d=~#;WiC1F; z?r`E`m`LnBz@{!4HPIqe5td*aR&OaA7`@ncXl#1=u#Ak_n)=w>K~69ro&WsvOP4H7 znOaf0a7lUT(nS@+Vka(IP*zzQJGFHF+$HnMVn>vvE}ie`8vVe6(z5c@*^3rrZ8=)M GwdVhdskvJK delta 5790 zcmXZfd05p|9>?)>6GTA}K@f4_g5biAf(S#nkcGIUq)(P#$0&Sm`AbfHDfy959p6qF$Mp`QJA=v z=kO66hkI}gc6r^HIGly;@o5ai6|Wn|q|*2&9o=z1#^8^r0Rn4{3CBx}7%Rj8S7z;5^_YC=)}GA0ZM zq54N+7o3g3=wK8s$AMUfdhP_q;x+7xG3yu<3-K@5$60S5oQ|4V1-8Ydn1;(;cj8>) z3mA_-y6oXqoV+o+EI8j z&OxQD4)vk~?&qhl2k|w`z;16E6M&;p3z&eZc&}?UCKB(&vG_fXz??05k7LYJH1wiZ zaUvc;?OF0xyA@;5_hM9y+>7z}1kS^?s3Hy9W;4+-?jt9;$Y$|RE8cxeSaI?j(+dh{_&Vc{DSKNOegNJ-I!r` zGwS(8==7tpi-z{(dsHfu-?c@RiOS4e9Du7a6Axl%^nZ^^#%OH9>FCAy9maIT;iv^n zz?<+vEWrhsfXzF|zl!M^9i<+!@NZl74>j17*P>?p2KwV=jKJTqJBI8u=2lF?aGa05 zc+XPoK)hj>{r+}bOuQdsu(;9Q5Az$ze-}Dd(y;n5%+&c`L*rID+I(bF zUW6LB6r*t&cEz>026v(cp7dXvk;hQqUyh-;9+klz?&te3jJU;(FQ6uP1LJl6Q$Dsg zR59uW_oF{nU?f(eis>I1fOV(=>fN{jHG$pe#go_`J)hY32BEet9<`u>cn6Nd9*l2l zX=sKY;6yx%fta@67H2LhE=Dg-#x#5aHNkpZjC*hx7JX{BWI1Zyw z3NS;TA141PG-~On$0Jycl}FeH?DUx`guh@o9d&^BN4ob*L(T%k6K#dx-bo4vafV zHt+=AhWV%LZ@;Ce=Z~N!`ZcQfe!(sn{f(V?e;h+R61!`6U#6i6Y{!n+ge7fKV06dO`cp8=Zl=Joi zszAq=YPVy+1zVMWM^$?Zj>DXb_7_YQjwC*ZMVS4Qy+|stfOrkY;3-swJU`pdV^B4e zi&OC>%){S*X1%dAvM6Eg&7GKl6&Q!FVPD*Xz3?Jx3&Jkj0s0_CWQJoVmf$V;5~}Eq zV>JGP%4o+cw$_T#OFZcc`PR%U=+Fe3P%k)x12FLydn~7*W;_SOu@?K`d#>N2Rvi4R zJ@-kdt(uEk;L|u9H)1+o!mb$ST(vXG!z?<6qf-1BhT&e+#9B~Qe*?9m+~4eg6Hu8d z$244pGw?&K$E4rwZ^IV!BTj6!rz{N@5<7!wC<8lC)qfo|!|Xro%;#Wl;%9IuZb7Z& z3iijG|Jk?{bBMQMKAy)1FzHWwidLgeK?_Dt-mNjgU09Q+uAG4r}j@i0_e zih6J%cE=T{EqW6Z@ic1U9dFnz8-mJY5vs^n;q%yvUaT@6GU@Q=kw!Z@_M(dKAjaTT z9EFh{kMCxij><$C-ioVmI-bB;IP@luuUOZiGI0o1v_Wk=zKo>dUBvTHmg; z;uh3|PvSKE4OK&T1$ylN|7!y67d}N_CQzp#D#*@s3~FnhL#^~}?20E*EB*tO>i7;G zUkwzZQv4|1iIu1cv|s^VLTyo2u;cL^o3dbQ4QikRs2Bc<8lY>4$9K#MP{(l=YGqY! z{5%dOe#iAHYJvkhddvhIi*2zEHL=a8_q^k{jbrW?OsL27;e!Cw-JOQTn2j0u3~D6} z?&n7^l=v7bW9M-a#&z=e{-!*E+LGg_(~%Qq7d96aJJmFFj2cm?xq>|~JKW>@EjIx( ziR*DRev2J3qqAM%P#i%#2~|tAsLbrcK>QRt;g>iN&!HFNB0Rc~98*9;0~exF@+@k` zTTnMzNTi){KB`Dda6VSL@vo?RA)<>trm5JOI2V=4+ff;N1a);+qfWzX7_9Sunubz$ z88vX+6R7$Vo->`i*o0&>ft<<4z%6c4&4XEM^?r!&bI%*4F zM1B7obTsgfG`eG84}0ADpaz_SDYz0B;|Hjf7xuKrX9;Sr8&NCTgYB^yb!tvw5(dTC z`yd;&C9_Z&s*d6ON6=VD$4T6UXRyX=_h?D1t&P2??*+x#izgPn#FeNjUW=*t8QzX< zdUC2)DSw5I;dIoZ_Us($B5IRhXFL$KqA94NT!yOl zcTpKQhMLGJ)PP~V?aIetPvXaM5UxhO=W|pBZa6gb!mfSn3rC>#uoU&hg*XIXM_n9e zP^rF%stwcE7Htx0%a&mdzKvSYPxvHe^|OB~wqpqKb<_gJ1t;1E(@`Chu`e#dXk72c zyD@?I0xEUkNp_;SsGG77W3hDGeaSr^2*~iJr{`v*uc%(_P0q;lrf1}4WF)2YFL2bf p@&zg5=TDngUOH_-+5BAZEz=&pZ-)1_nPu~5&n(||Y4uyx{|AFnvGxD} diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 11ef7c619..df6546ce6 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -34,9 +34,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 01:11+0000\n" -"Last-Translator: David Georges\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" +"Last-Translator: Komiya Takeshi \n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -1227,7 +1227,7 @@ msgid "job number should be a positive number" msgstr "Le numéro du job doit être strictement positif" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "Pour plus d'informations, visitez le site ." @@ -2911,7 +2911,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "Échec pour obtenir la signature de la fonction pour %s : %s" @@ -2926,28 +2926,28 @@ msgstr "Échec pour obtenir la signature du constructeur pour %s : %s" msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "alias de %s" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias de TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "Échec pour obtenir la signature de la méthode pour %s : %s" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -3010,30 +3010,30 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary engendre les fichiers .rst de manière interne. Mais votre source_suffix ne contient pas .rst. Ignoré." -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, 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:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] engendrement d’un auto-sommaire pour : %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] écriture dans %s" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "[autosummary] échec de l'import de %r : %s" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3048,29 +3048,36 @@ 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:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "fichiers sources pour lesquels il faut produire des fichiers rST" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, 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:627 +#: sphinx/ext/autosummary/generate.py:643 #, 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:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "membres importés du document (défaut : %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Arguments de mots-clés" @@ -3396,14 +3403,14 @@ msgid "Other changes" msgstr "Autres modifications" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Lien permanent vers ce titre" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Lien permanent vers cette définition" @@ -3571,37 +3578,37 @@ msgstr "exception pendant l’évaluation de l'expression de la directive only : msgid "default role %s not found" msgstr "rôle par défaut %s introuvable" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format n'est pas défini %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Aucun ID assigné au node %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "Lien permanent vers ce terme" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Lien permanent vers ce tableau" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Lien permanent vers ce code" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Lien permanent vers cette image" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Lien permanent vers cette table des matières" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée." diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.mo index 4c74d8f5fd0c88592f2b22e02d46173807e7098d..1712547e33298f76ea1a01eae67f1542f81206c2 100644 GIT binary patch delta 18 ZcmZo*X<(Vq$!?)wU|?lvxN$-OBLFa&1up;q delta 18 ZcmZo*X<(Vq$!@4%U|?lvuyH~GBLFZ*1t$Oi diff --git a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po index f932b96b8..3933e812e 100644 --- a/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr_FR/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: French (France) (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr_FR/)\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index f4c2abdd1db5280e3acbdee32d2a36ad1e35741c..6cb5b607535139c5552937697aee18e988c69314 100644 GIT binary patch delta 35 lcmaFZ&i1gKZ3AZ~yM=;*ft8`*WPwfv4kIXMvqk61UjWST3u^!X delta 35 mcmaFZ&i1gKZ3AZ~yP<-Cft8`bWPwfv4nq?NXR}4;%3lD>>kC}~ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 56d260287..7b98c28db 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" @@ -1204,7 +1204,7 @@ msgid "job number should be a positive number" msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2888,7 +2888,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,28 +2903,28 @@ msgstr "" msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2987,30 +2987,30 @@ msgid "" "contain .rst. Skipped." msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया." -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[ऑटोसमरी] %s पर लिख रहा है" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3025,29 +3025,36 @@ 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:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "सभी परिणाम रखने के लिए निर्देशिका" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "मुख्य शब्दों के चर-पद" @@ -3373,14 +3380,14 @@ msgid "Other changes" msgstr "अन्य परिवर्तन" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "इस शीर्ष-पंक्ति की स्थायी कड़ी" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "इस परिभाषा की स्थायी कड़ी" @@ -3548,37 +3555,37 @@ msgstr "केवल निर्देशक भाव का मूल्य msgid "default role %s not found" msgstr "मानक भूमिका '%s' नहीं मिली" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "%s के लिए नमफिग_फॉर्मेट नहीं बताया गया है" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "%s बिंदु के लिए कोई पहचान-चिन्ह नहीं दिया गया" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "इस सारणी की स्थायी कड़ी" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "इस निर्देश की स्थायी कड़ी" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "इस चित्र की स्थायी कड़ी" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "इस विषय-सूची-संरचना की स्थायी कड़ी" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है." diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 77c9bedee5bf0e98900397a317530ff588729bc4..aa5d59ec47cdca9f7ccf6dff75a4b971ba726cd3 100644 GIT binary patch delta 18 Zcmey*{GWM3C%c7$fq|8w;l>I1i~vDZ1}Xpm delta 18 Zcmey*{GWM3C%d77fq|8w!Nv*si~vCc1|k3e diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index bfec6e41a..937bd27a3 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 3986e0620a82cbd717a6982c8ddbbaeca96c63ba..876e5b8bc7b8461e4751164f5ea5a63ddecc96af 100644 GIT binary patch delta 35 lcmaFX&iJgIaf6-)yM=;*ft8`*WK#_V4kIXMbF4\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2885,7 +2885,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,28 +2900,28 @@ msgstr "" msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,30 +2984,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,29 +3022,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Argumenti" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "Ostale promjene" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Link na taj naslov" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link na tu definiciju" @@ -3545,37 +3552,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Permalink na ovu tablicu" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Permalink na ovaj kod" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Permalink na ovu sliku" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Permalink na ovaj sadržaj" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 268dea45ea9ca33e0c0eb5062f0395477a832400..b8292f67986df181b18a7d6b565b921ef57199ba 100644 GIT binary patch delta 20 bcmewt{V#gM0V#G11p@;sL&MF-rObr^UE&9J delta 20 bcmewt{V#gM0V#Gv1p@;sLxau7rObr^U5E#6 diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 07ec391b8..a9d5c32d5 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2890,7 +2890,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,28 +2905,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2989,30 +2989,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3027,29 +3027,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3375,14 +3382,14 @@ msgid "Other changes" msgstr "Egyéb változások" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Hivatkozás erre a fejezetcímre" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Hivatkozás erre a definícióra" @@ -3550,37 +3557,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Permalink erre a táblázatra" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Permalink erre a kódrészletre" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Permalink erre a képre" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index d3288845e1e071070f2a503ac3ddfea80a3ce1ed..28b1a7eebe380aa9cdd8db41e1e15cc7e455e02e 100644 GIT binary patch delta 22 ecmeCV%iMF9dBfs1b_)dq11m$r&8ylTr2_zJnF%=n delta 22 ecmeCV%iMF9dBfs1c0&aN11m#=&8ylTr2_zJKM64a diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index d039fd544..53f470918 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "job number seharusnya sebuah bilangan positif" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2889,7 +2889,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,28 +2904,28 @@ msgstr "" msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2988,30 +2988,30 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary menghasilkan file .rst secara internal. Tapi source_suffix Anda tidak mengandung .rst. Dilewati." -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] menghasilkan autosummary untuk: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] menulis ke %s" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3026,29 +3026,36 @@ 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:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "berkas sumber untuk menghasilkan file rST untuk" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "direktori untuk menempatkan semua keluaran dalam" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "akhiran bawaan untuk berkas (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "direktori templat ubahsuai (bawaan: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "mendokumentasikan anggota yang diimpor (bawaan: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Argumen Kata Kunci" @@ -3374,14 +3381,14 @@ msgid "Other changes" msgstr "Perubahan lain" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Link permanen untuk headline ini" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanen untuk definisi ini" @@ -3549,37 +3556,37 @@ msgstr "pengecualian saat mengevaluasi hanya ekspresi pengarahan: %s" msgid "default role %s not found" msgstr "peran bawaan %s tidak ditemukan" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format tidak didefinisikan untuk %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Tidak ada ID apa pun yang ditugaskan untuk simpul %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Link permanen untuk table ini" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Link permanen untuk kode ini" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Link permanen untuk gambar ini" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Tautan ke daftar isi ini" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Tidak dapat memperoleh ukuran gambar. :scale: option diabaikan." diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 2ce668c1004df5541dffa61ca6f256070f22b12b..25047bd7f5b8308deadc42ca3c448229dd769799 100644 GIT binary patch delta 33 jcmaFq|I&YhhXlKYf`NgRq2XkI2?Y)#C}(rIL=is#vJ?qN delta 33 kcmaFq|I&YhhXlK!f`NgRp}}N-2?Y*A69{K>xkM2^0I?4VIRF3v diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 00c2fcfcd..781c1b195 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" @@ -1205,7 +1205,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2889,7 +2889,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2904,28 +2904,28 @@ msgstr "" msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2988,30 +2988,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3026,29 +3026,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Argomenti parole chiave" @@ -3374,14 +3381,14 @@ msgid "Other changes" msgstr "Altre modifiche" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Link a questa intestazione" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link a questa definizione" @@ -3549,37 +3556,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Link a questa tabella" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Link a questo codice" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Link a questa immagine" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Link a questo indice" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 177d95733dfadd11b6741f23286787a255b8704e..e5af94a97912dd089297efe46dad651ec5510764 100644 GIT binary patch delta 22 ecmZ4To@L2\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" @@ -1216,7 +1216,7 @@ msgid "job number should be a positive number" msgstr "ジョブ番号は正数でなければなりません" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2900,7 +2900,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2915,28 +2915,28 @@ msgstr "" msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2999,30 +2999,30 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, 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:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] %s の autosummary を生成中" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s に書き込み中" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "[autosummary] %rのインポートに失敗しました: %s" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3037,29 +3037,36 @@ 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:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "rST ファイルを生成するためのソースファイル" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "キーワード引数" @@ -3385,14 +3392,14 @@ msgid "Other changes" msgstr "その他の変更" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "このヘッドラインへのパーマリンク" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "この定義へのパーマリンク" @@ -3560,37 +3567,37 @@ msgstr "only ディレクティブの条件式の評価中に例外が発生し msgid "default role %s not found" msgstr "デフォルトのロール %s が見つかりません" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "%s に numfig_format は定義されていません" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "いくつかの ID が %s ノードに割り当てられていません" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "このテーブルへのパーマリンク" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "このコードへのパーマリンク" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "この画像へのパーマリンク" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "この目次へのパーマリンク" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 86c2be16be6c9f8d5c42183a87b5319b3f1b310a..03682088032190fb53217a82925858bc2944460a 100644 GIT binary patch delta 22 ecmaFS&HAF7b;H}0>=p_J23CfKo4>65G8+JON(ylR delta 22 ecmaFS&HAF7b;H}0?1l;k23Cd!o4>65G8+JN@Cs=F diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 454ebe3c4..2f061f6c9 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-15 01:41+0000\n" "Last-Translator: YT H \n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "작업 숫자는 양수여야 합니다" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "자세한 내용은 를 참조하십시오." @@ -2886,7 +2886,7 @@ msgid "" msgstr ":members: 옵션에 언급된 속성이 없습니다: 모듈 %s, 속성 %s" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "%s에 대한 함수 서명을 가져오지 못했습니다: %s" @@ -2901,28 +2901,28 @@ msgstr "%s에 대한 생성자 서명을 가져오지 못했습니다: %s" msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "%s의 별칭" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "TypeVar(%s)의 별칭" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "%s에 대한 메소드 서명을 가져오지 못했습니다: %s" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "%s에서 잘못된 __slots__ 가 발견되었습니다. 무시합니다." -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary는 내부적으로 .rst 파일을 생성합니다. 하지만 source_suffix에 .rst가 포함되어 있지 않습니다. 건너뜁니다." -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, 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:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 자동 요약 생성: %s" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s에 기록" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "[autosummary] %r을(를) import 하지 못했습니다: %s" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ 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:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "rST 파일을 생성할 원본 파일" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "모든 출력을 저장할 디렉토리" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "파일의 기본 확장자 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "사용자 정의 템플릿 디렉토리 (기본값: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "가져온 멤버 문서화 (기본값: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "키워드 매개변수" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "다른 변경 사항" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "이 표제에 대한 퍼머링크" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "이 정의에 대한 퍼머링크" @@ -3546,37 +3553,37 @@ msgstr "only 지시문 식을 평가하는 동안 예외 발생: %s" msgid "default role %s not found" msgstr "기본 역할 %s을(를) 찾을 수 없음" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "numfig_format이 %s에 대해 정의되지 않음" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "%s 노드에 할당되지 않은 ID" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "이 용어에 대한 퍼머링크" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "이 표에 대한 퍼머링크" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "이 코드에 대한 퍼머링크" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "이 이미지에 대한 퍼머링크" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "이 목차에 대한 퍼머링크" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "이미지 크기를 얻어올 수 없습니다. :scale: 옵션을 무시합니다." diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index e6ea90912d28943fcda3d464e9af43b2a02b57dd..d728211b0991c48dcf8ee0f66d268a533989479f 100644 GIT binary patch delta 20 ccmX@hf0lp4EoOEL1p@;sL&MDvncpx208On2CjbBd delta 20 ccmX@hf0lp4EoOE@1p@;sLxar^ncpx208LW|9{>OV diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 11e4cd6a3..c3828fbc5 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2885,7 +2885,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,28 +2900,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,30 +2984,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,29 +3022,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3545,37 +3552,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 180a7f0558beedabc8e5c5a32b0e86378359e5c0..bb4671ac0d3703907ddcf3580dc4e6667c048af0 100644 GIT binary patch delta 20 bcmbQ~Hq&jxaRGJ<1p@;sL&MGI1iXa+OY#Pf delta 20 bcmbQ~Hq&jxaRGKi1p@;sLxaud1iXa+OPB_S diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 7f32d7a1f..0766d6415 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2886,7 +2886,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2901,28 +2901,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "अरु परिवर्तनहरु " #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "यो शिर्षकको लागि पर्मालिन्क । " #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "यो अर्थको लागि पर्मालिन्क" @@ -3546,37 +3553,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.js b/sphinx/locale/nl/LC_MESSAGES/sphinx.js index bc6c1d894..7a9f4ae3c 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.js @@ -39,7 +39,7 @@ Documentation.addTranslations({ "Search": "Zoeken", "Search Page": "Zoekpagina", "Search Results": "Zoekresultaten", - "Search finished, found %s page(s) matching the search query.": "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm.", + "Search finished, found %s page(s) matching the search query.": "Zoekopdracht voltooid, %s pagina(s) gevonden die overeenkomen met de zoekterm.", "Search within %(docstitle)s": "Zoeken in %(docstitle)s", "Searching": "Bezig met zoeken", "Searching for multiple words only shows matches that contain\n all words.": "", diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 35af5d9ff83f27e5afe04b05d8dffdbd69dd979b..9b85753974c6e9903d70469d88c1ee61e66a4d10 100644 GIT binary patch delta 1069 zcmXZaUr3Wt7{~EP=G5h^nX5!8-q|0;7HyR_&6fS~PZX?}gcbKiiECz5MeYlLZSio}h?loJDRoILUZo@vTz_Fs^sCj98fRB-%wZ_dVaTJH} zTHI1L%3zUz7mx2V^WXrg;1I6I1g^kw^y4jDi4XBM&J>?xoo<01)cO;shEAc@okist z!;Lu6nQ}XQL7<+%Yt)2Ks16pe1`BuwZNJ$KNT7oSEW@e;{4t0s+<@D$8S8KmmH#4^ z;vLip-%l~n(LF)!a0a#D4Tf+Y9sGkjq2NKY5v;?lm_{Xhi`sY&wedMzi(gUsf8!wj z#mji|kb6?8&kXb}z9H|dt;?(tuc8t>MRk-z9px;p!Y{Z7f1npb-R?JTM0J+LYCMmd z@j7n6=cxJbk$frpSbVXFWxV)@D(LBP7gnO;QB*vJN3avsSsGR79=72#jNlS#U3ITJ zuNHM@La2BI1Jt+O#Xv8rvwjTYY1D#A)Fpg`I)Nr*^ ziQPDiK757dG$oQF7m}HYz-)ba%!x$WqtUzlVW(opPAAgR-qM=66b=M3H#>F({sSy! BgslJo delta 1071 zcmXZaNoW&s6vy!wnx>7WG1j&&K}l1WU?V0{(A3(+rHd9SC_=TOqUk|Vg1A5s2d&ae zEL4$F6vT^5Pht*gH9aX7M8qCERIHSO2O$T=n+Se?Okm*ipEv*id-LAR>v7MUanG|{ z!09uy(=BGpaS}r~gMM7V67!j>l04ZlQj{`=|*_qW*~wScczG2^Ub`_-Ek zkl|Vl)?hzI@f^mfZ=)>yIECtD8kKMswQ(L_p_jG`IE6}dWuMtG9L2Tx3u9Q?V` diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 6aa34bffc..10accd87b 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -9,12 +9,13 @@ # FIRST AUTHOR , 2008 # Gert van Dijk , 2019 # Jesse Tan, 2017 +# Komiya Takeshi , 2021 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-23 05:56+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" @@ -1206,7 +1207,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2890,7 +2891,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2905,28 +2906,28 @@ msgstr "" msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2989,30 +2990,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3027,29 +3028,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Sleutelwoordargumenten" @@ -3375,14 +3383,14 @@ msgid "Other changes" msgstr "Andere veranderingen" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Permalink naar deze titel" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink naar deze definitie" @@ -3401,7 +3409,7 @@ msgstr "Zoeken aan het voorbereiden..." #: sphinx/themes/basic/static/searchtools.js:310 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm." +msgstr "Zoekopdracht voltooid, %s pagina(s) gevonden die overeenkomen met de zoekterm." #: sphinx/themes/basic/static/searchtools.js:365 msgid ", in " @@ -3550,37 +3558,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Permalink naar deze tabel" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Permalink naar deze broncode" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Permallink naar deze afbeelding" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Permalink naar deze toctree" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 269d31befcecd16f512fe02e178991078a3006a8..cd799f1b2cdd2cc5c4cef441d1c95400e65ee48f 100644 GIT binary patch delta 22 ecmaF)lJVtB#tlkN>=p_J23CfKn>C#d7y$rmcnBr{ delta 22 ecmaF)lJVtB#tlkN?1l;k23Cd!n>C#d7y$rm9ta)) diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index b6625ffc2..798f646dd 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,7 +11,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" @@ -1204,7 +1204,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2888,7 +2888,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2903,28 +2903,28 @@ msgstr "" msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2987,30 +2987,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3025,29 +3025,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, 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:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Argumenty Nazwane" @@ -3373,14 +3380,14 @@ msgid "Other changes" msgstr "Inne zmiany" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Stały odnośnik do tego nagłówka" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Stały odnośnik do tej definicji" @@ -3548,37 +3555,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Stały odnośnik do tej tabeli" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Stały odnośnik do tego bloku kodu" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Stały odnośnik do tego obrazu" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Stały odnośnik do tego spisu treści" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index b0c5d8f76174fa7474f9aa1de121bd526ee4feb6..abbba2a2eb2f027d127349ce7da49fbab8fb397a 100644 GIT binary patch delta 30 gcmeyy{Ec}+C%c7$fq|8w;lv3F97a&~#vOKy0F{;q-T(jq delta 30 hcmeyy{Ec}+C%d77fq|8w!Nds)9EK(k_QoA{i~y9U2+#lk diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 461e07345..380d463e5 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" -"PO-Revision-Date: 2021-11-14 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" +"PO-Revision-Date: 2021-11-28 00:11+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 30e2c69926aa1684547b93c31a60e4cb3462538f..c054ee9610d25fd02179a9ee53991dae3cc5b5f7 100644 GIT binary patch delta 20 bcmbQ^Fvnp-f-t*K;jKIXM2-d> diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index b6079c74e..37bf164a1 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2886,7 +2886,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2901,28 +2901,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "Outras alterações" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Link permanente para este título" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" @@ -3546,37 +3553,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index d917f1c99d685bc93f48dccd608ba81ee6b9fafa..121d6508dfeea4ec4e47757549f3e54a8ab36b5b 100644 GIT binary patch delta 22 ecmX>yi{;2HmJPqBuv;h?7+4t^Zf2V5Q~>~M%Lrot delta 22 ecmX>yi{;2HmJPqBup25E7+4t^Y-XD3Q~>~MaR^%g diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 78536e0f3..cb84b2e16 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" @@ -1203,7 +1203,7 @@ msgid "job number should be a positive number" msgstr "počet úloh musí byť kladné číslo" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2887,7 +2887,7 @@ msgid "" msgstr "chýbajúci atribút spomenutý vo voľbe :members: : modul %s, atribút %s" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2902,28 +2902,28 @@ msgstr "" msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "alias pre %s" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "alias pre TypeVar(%s)" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "Neplatné __slots__ nájdené v %s. Ignorované." -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2986,30 +2986,30 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary interne generuje súbory .rst. Ale Váš source_suffix neobsahuje .rst. Preskočené." -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3024,29 +3024,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "adresár umiestnenia výstupu" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "predvolená prípona súboru (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "vlastný adresár šablón (predvolene: %(default)s)" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "dokumentovať importovaných členov (predvolene: %(default)s)" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "Argumenty kľúčových slov" @@ -3372,14 +3379,14 @@ msgid "Other changes" msgstr "Ostatné zmeny" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Trvalý odkaz na túto definíciu" @@ -3547,37 +3554,37 @@ msgstr "" msgid "default role %s not found" msgstr "predvolená rola %s nenájdená" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "nie je definovaný numfig_format pre %s" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "Žiadne ID nie je priradené uzlu %s" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "Trvalý odkaz na tento termín" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "Trvalý odkaz na túto tabuľku" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "Trvalý odkaz na tento kód" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "Trvalý odkaz na tento obrázok" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "Trvalý odkaz na tento strom obsahu" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "Nemožno získať veľkosť obrázku. voľba :scale: je ignorovaná." diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index fff10b56f9b2f5cbcde3e2323a5d2e4f7082b559..618a4efcadd490beb8494bc3b558d06918d934ce 100644 GIT binary patch delta 20 bcmeyM^+9Wc1uwgWf`NgRq2XqGUPBH5N!|s$ delta 20 bcmeyM^+9Wc1uwgyf`NgRp}}T*UPBH5NrVNp diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index e6306ed33..ffbb3f43b 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "Ostale spremembe" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Povezava na naslov" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Povezava na to definicijo" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index b7293d0aa..8ed449e8d 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 4.4.0\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -1206,7 +1206,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2902,7 +2902,7 @@ msgid "missing attribute mentioned in :members: option: module %s, attribute %s" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2917,28 +2917,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of " "\"alphabetic\". Please update your setting." @@ -3001,8 +3001,8 @@ msgid "" "not contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following " @@ -3010,22 +3010,22 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3042,29 +3042,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3390,14 +3397,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3564,37 +3571,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 98c25b3d8ee6ce39e0f66346dd214e4c2dbc3836..3515192a0d3d428629a9244aab3d8bb94794f7ee 100644 GIT binary patch delta 20 ccmX@$dBAhSIU#ln1p@;sL&MEig\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" @@ -1202,7 +1202,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2886,7 +2886,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2901,28 +2901,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2985,30 +2985,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3023,29 +3023,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3371,14 +3378,14 @@ msgid "Other changes" msgstr "Друге измене" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3546,37 +3553,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 0ab0ac2fb72a23af09b358fe5125b9129ddbcf2f..9e6281bad9d404025424eb1782fed76d50db7184 100644 GIT binary patch delta 18 Zcmcb}a*<_1C%c7$fq|8w;l>FE838-}1|k3e delta 18 Zcmcb}a*<_1C%d77fq|8w!Nv&(838-11{weW diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 0b3f71612..f88ac4196 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 0efa1d95bb62edcff622227d08305d2e89219999..c058e8200a362edbb5207509a0f568edf4922309 100644 GIT binary patch delta 20 bcmdmFy2*6IF9CK71p@;sL&MFCf*UyjP16Qr delta 20 bcmdmFy2*6IF9CK#1p@;sLxatXf*UyjO?d`e diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 5b6e7faf2..2a6a1fa45 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" @@ -1200,7 +1200,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2884,7 +2884,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2899,28 +2899,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2983,30 +2983,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3021,29 +3021,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3369,14 +3376,14 @@ msgid "Other changes" msgstr "Övriga förändringar" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Permalink till denna rubrik" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Permalink till denna definition" @@ -3544,37 +3551,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index eb96cb9dd40e6b002116aed70da5d88e5f61e79e..2fef3681cb5d96c375efff709cba23b92dc75e53 100644 GIT binary patch delta 20 bcmeA-?Kj=B+!N9=E&~WoNo|(J=OI-%) delta 20 bcmeA-?Kj=B~!N9=E&|vd7o|(J=O9KYt diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 0959a7bc6..31c6c3a1a 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2021-11-21 00:10+0000\n" +"POT-Creation-Date: 2021-11-28 00:11+0000\n" "PO-Revision-Date: 2021-11-14 00:10+0000\n" "Last-Translator: Komiya Takeshi \n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2885,7 +2885,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,28 +2900,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,30 +2984,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,29 +3022,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "Інші зміни" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "Постійне посилання на цей заголовок" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "Постійне посилання на це визначення" @@ -3545,37 +3552,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 898bc374edc493af40c5a44696d90ed4233ae858..0ffbc2e626ee9f65e42ce290f0bb410411285d57 100644 GIT binary patch delta 20 ccmX@7cTR7^B3^b21p@;sL&ME0d6#km08S|e$^ZZW delta 20 ccmX@7cTR7^B3^bw1p@;sLxasLd6#km08P&Z!T\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" @@ -1201,7 +1201,7 @@ msgid "job number should be a positive number" msgstr "" #: sphinx/cmd/build.py:104 sphinx/cmd/quickstart.py:470 -#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:598 +#: sphinx/ext/apidoc.py:307 sphinx/ext/autosummary/generate.py:614 msgid "For more information, visit ." msgstr "" @@ -2885,7 +2885,7 @@ msgid "" msgstr "" #: sphinx/ext/autodoc/__init__.py:1304 sphinx/ext/autodoc/__init__.py:1378 -#: sphinx/ext/autodoc/__init__.py:2743 +#: sphinx/ext/autodoc/__init__.py:2751 #, python-format msgid "Failed to get a function signature for %s: %s" msgstr "" @@ -2900,28 +2900,28 @@ msgstr "" msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1756 sphinx/ext/autodoc/__init__.py:1829 -#: sphinx/ext/autodoc/__init__.py:1848 +#: sphinx/ext/autodoc/__init__.py:1764 sphinx/ext/autodoc/__init__.py:1837 +#: sphinx/ext/autodoc/__init__.py:1856 #, python-format msgid "alias of %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1890 +#: sphinx/ext/autodoc/__init__.py:1898 #, python-format msgid "alias of TypeVar(%s)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2123 sphinx/ext/autodoc/__init__.py:2217 +#: sphinx/ext/autodoc/__init__.py:2131 sphinx/ext/autodoc/__init__.py:2225 #, python-format msgid "Failed to get a method signature for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:2348 +#: sphinx/ext/autodoc/__init__.py:2356 #, python-format msgid "Invalid __slots__ found on %s. Ignored." msgstr "" -#: sphinx/ext/autodoc/__init__.py:2786 +#: sphinx/ext/autodoc/__init__.py:2794 msgid "" "autodoc_member_order now accepts \"alphabetical\" instead of \"alphabetic\"." " Please update your setting." @@ -2984,30 +2984,30 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:188 -#: sphinx/ext/autosummary/generate.py:237 +#: sphinx/ext/autosummary/generate.py:189 +#: sphinx/ext/autosummary/generate.py:253 #, python-format msgid "" "autosummary: failed to determine %r to be documented, the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autosummary/generate.py:384 +#: sphinx/ext/autosummary/generate.py:400 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:388 +#: sphinx/ext/autosummary/generate.py:404 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:425 +#: sphinx/ext/autosummary/generate.py:441 #, python-format msgid "[autosummary] failed to import %r: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:599 +#: sphinx/ext/autosummary/generate.py:615 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -3022,29 +3022,36 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:616 +#: sphinx/ext/autosummary/generate.py:632 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:620 +#: sphinx/ext/autosummary/generate.py:636 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:623 +#: sphinx/ext/autosummary/generate.py:639 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:627 +#: sphinx/ext/autosummary/generate.py:643 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:631 +#: sphinx/ext/autosummary/generate.py:647 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" +#: sphinx/ext/autosummary/generate.py:651 +#, python-format +msgid "" +"document exactly the members in module __all__ attribute. (default: " +"%(default)s)" +msgstr "" + #: sphinx/ext/napoleon/__init__.py:347 sphinx/ext/napoleon/docstring.py:703 msgid "Keyword Arguments" msgstr "" @@ -3370,14 +3377,14 @@ msgid "Other changes" msgstr "" #: sphinx/themes/basic/static/doctools.js:199 sphinx/writers/html.py:437 -#: sphinx/writers/html.py:442 sphinx/writers/html5.py:388 -#: sphinx/writers/html5.py:393 +#: sphinx/writers/html.py:442 sphinx/writers/html5.py:392 +#: sphinx/writers/html5.py:397 msgid "Permalink to this headline" msgstr "" #: sphinx/themes/basic/static/doctools.js:205 sphinx/writers/html.py:132 -#: sphinx/writers/html.py:141 sphinx/writers/html5.py:103 -#: sphinx/writers/html5.py:112 +#: sphinx/writers/html.py:141 sphinx/writers/html5.py:107 +#: sphinx/writers/html5.py:116 msgid "Permalink to this definition" msgstr "" @@ -3545,37 +3552,37 @@ msgstr "" msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:330 sphinx/writers/html5.py:301 +#: sphinx/writers/html.py:330 sphinx/writers/html5.py:305 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:340 sphinx/writers/html5.py:311 +#: sphinx/writers/html.py:340 sphinx/writers/html5.py:315 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:414 sphinx/writers/html5.py:365 +#: sphinx/writers/html.py:414 sphinx/writers/html5.py:369 msgid "Permalink to this term" msgstr "" -#: sphinx/writers/html.py:446 sphinx/writers/html5.py:397 +#: sphinx/writers/html.py:446 sphinx/writers/html5.py:401 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:489 sphinx/writers/html5.py:440 +#: sphinx/writers/html.py:489 sphinx/writers/html5.py:444 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:491 sphinx/writers/html5.py:442 +#: sphinx/writers/html.py:491 sphinx/writers/html5.py:446 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:493 sphinx/writers/html5.py:444 +#: sphinx/writers/html.py:493 sphinx/writers/html5.py:448 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:625 sphinx/writers/html5.py:565 +#: sphinx/writers/html.py:625 sphinx/writers/html5.py:569 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" From 17467b7ae263109ef68a89d18f0715f4317e4289 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 28 Nov 2021 13:01:42 +0900 Subject: [PATCH 6/9] test: Try to import nodes.meta first (for the latest docutils) --- tests/test_versioning.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/test_versioning.py b/tests/test_versioning.py index 8ec1405ad..8de991389 100644 --- a/tests/test_versioning.py +++ b/tests/test_versioning.py @@ -17,10 +17,11 @@ from sphinx.testing.util import SphinxTestApp from sphinx.versioning import add_uids, get_ratio, merge_doctrees try: + from docutils.nodes import meta +except ImportError: + # docutils-0.18.0 or older from docutils.parsers.rst.directives.html import MetaBody meta = MetaBody.meta -except ImportError: - from docutils.nodes import meta app = original = original_uids = None From 17422d2227596c3f331c14fdd37bb7675736cb54 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 28 Nov 2021 13:27:36 +0900 Subject: [PATCH 7/9] Add i18n label to weekly transifex PR --- .github/workflows/transifex.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/transifex.yml b/.github/workflows/transifex.yml index 5a9f929a7..bf0f11548 100644 --- a/.github/workflows/transifex.yml +++ b/.github/workflows/transifex.yml @@ -53,3 +53,4 @@ jobs: commit-message: 'Update message catalogs' branch: bot/pull-translations title: Update message catalogs + labels: i18n From 3fa146078bafbf82a38d4f95ea1ae4eee4f86827 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 29 Nov 2021 09:38:18 +0900 Subject: [PATCH 8/9] Sort CHANGES entries --- CHANGES | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index b8fe1d952..9547c4bad 100644 --- a/CHANGES +++ b/CHANGES @@ -12,16 +12,15 @@ Deprecated Features added -------------- - -* #9800: extlinks: Emit warning if a hardcoded link is replaceable - by an extlink, suggesting a replacement. -* #9815: html theme: Wrap sidebar components in div to allow customizing their - layout via CSS * #9831: Autosummary now documents only the members specified in a module's ``__all__`` attribute if :confval:`autosummary_ignore_module_all` is set to ``False``. The default behaviour is unchanged. Autogen also now supports this behavior with the ``--respect-module-all`` switch. +* #9800: extlinks: Emit warning if a hardcoded link is replaceable + by an extlink, suggesting a replacement. +* #9815: html theme: Wrap sidebar components in div to allow customizing their + layout via CSS Bugs fixed ---------- From 558f54a2b45ca77b7c942e17128d8bd6d45dd33c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 29 Nov 2021 09:42:20 +0900 Subject: [PATCH 9/9] Fix flake8 and isort errors (refs: #9800) --- sphinx/ext/extlinks.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/sphinx/ext/extlinks.py b/sphinx/ext/extlinks.py index 59c5d9309..5709a12f5 100644 --- a/sphinx/ext/extlinks.py +++ b/sphinx/ext/extlinks.py @@ -25,8 +25,8 @@ :license: BSD, see LICENSE for details. """ -import warnings import re +import warnings from typing import Any, Dict, List, Tuple from docutils import nodes, utils @@ -73,13 +73,10 @@ class ExternalLinksChecker(SphinxPostTransform): match = uri_pattern.match(uri) if match and match.groupdict().get('value'): # build a replacement suggestion + msg = __('hardcoded link %r could be replaced by an extlink ' + '(try using %r instead)') replacement = f":{alias}:`{match.groupdict().get('value')}`" - logger.warning( - __('hardcoded link %r could be replaced by an extlink (try using %r instead)'), - uri, - replacement, - location=refnode, - ) + logger.warning(msg, uri, replacement, location=refnode) def make_link_role(name: str, base_url: str, caption: str) -> RoleFunction: